1 {% extends "base.html" %}
2 <!-- template badges.html -->
6 {% block title %}{% spaceless %}{% trans "Badges summary" %}{% endspaceless %}{% endblock %}
8 <script type="text/javascript">
10 $("#nav_badges").attr('className',"on");
16 <div class="headlineA">
17 <span class="headMedals">{% trans "Badges" %}</span>
19 <div class="badges" id="main-body" style="width:100%">
21 {% trans "Community gives you awards for your questions, answers and votes." %}
22 {% blocktrans %}Below is the list of available badges and number of times each type of badge has been awarded.
26 {% for badge in badges %}
27 <div style="clear:both;line-height:30px">
28 <div style="float:left;min-width:30px;text-align:right;height:30px">
29 {% for a in mybadges %}
30 {% ifequal a.badge_id badge.id %}
31 <span style="font-size:175%; padding-right:5px; color:#5B9058;">✔</span>
35 <div style="float:left;width:230px;">
36 <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>
38 <p style="float:left;margin-top:8px;">
39 {{ badge.description }}
49 <h3>{% trans "Community badges" %}</h3>
52 <a style="cursor:default;" title="gold badge: the highest honor and is very rare" class="medal"><span class="badge1">●</span> {% trans "gold" %}</a>
55 {% trans "gold badge description" %}
58 <a style="cursor:default;"
59 title="silver badge: occasionally awarded for the very high quality contributions"
60 class="medal"><span class="badge2">●</span> {% trans "silver" %}</a>
63 {% trans "silver badge description" %}
66 <a style="cursor:default;" title="{% trans "bronze badge: often given as a special honor" %}" class="medal">
67 <span class="badge3">●</span> {% trans "bronze" %}</a>
70 {% trans "bronze badge description" %}
75 <!-- end template badges.html -->