blob: 1902a3b035ad1abe43c32d027f62c4f5ac8e56be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
{% extends "base.html" %}
<!-- template badges.html -->
{% load extra_tags %}
{% load humanize %}
{% load i18n %}
{% block title %}{% spaceless %}{% trans "Badges summary" %}{% endspaceless %}{% endblock %}
{% block forejs %}
<script type="text/javascript">
$().ready(function(){
$("#nav_badges").attr('className',"on");
});
</script>
{% endblock %}
{% block content %}
<div class="headlineA">
<span class="headMedals">{% trans "Badges" %}</span>
</div>
<div class="badges" id="main-body" style="width:100%">
<p>
{% trans "Community gives you awards for your questions, answers and votes." %}<br/>
{% blocktrans %}Below is the list of available badges and number
of times each type of badge has been awarded. Give us feedback at {{feedback_faq_url}}.
{% endblocktrans %}
</p>
<div id="medalList">
{% for badge in badges %}
<div style="clear:both;line-height:30px">
<div style="float:left;min-width:30px;text-align:right;height:30px">
{% for a in mybadges %}
{% ifequal a.badge_id badge.id %}
<span style="font-size:175%; padding-right:5px; color:#5B9058;">✔</span>
{% endifequal %}
{% endfor %}
</div>
<div style="float:left;width:180px;">
<a href="{{badge.get_absolute_url}}" title="{{ badge.get_type_display }} : {{ badge.description }}" class="medal"><span class="badge{{ badge.type }}">●</span> {{ badge.name }}</a><strong> × {{ badge.awarded_count|intcomma }}</strong>
</div>
<p style="float:left;width:350px;">
{{ badge.description }}
</p>
</div>
{% endfor %}
</div>
</div>
{% endblock %}
{% block sidebar %}
<div class="boxC">
<h3>{% trans "Community badges" %}</h3>
<div class="body">
<p>
<a style="cursor:default;" title="gold badge: the highest honor and is very rare" class="medal"><span class="badge1">●</span> {% trans "gold" %}</a>
</p>
<p>
{% trans "gold badge description" %}
</p>
<p>
<a style="cursor:default;"
title="silver badge: occasionally awarded for the very high quality contributions"
class="medal"><span class="badge2">●</span> {% trans "silver" %}</a>
</p>
<p>
{% trans "silver badge description" %}
</p>
<p>
<a style="cursor:default;" title="{% trans "bronze badge: often given as a special honor" %}" class="medal">
<span class="badge3">●</span> {% trans "bronze" %}</a>
</p>
<p>
{% trans "bronze badge description" %}
</p>
</div>
</div>
{% endblock %}
<!-- end template badges.html -->
|