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." %}<br/>
22 {% blocktrans %}Below is the list of available badges and number
23 of times each type of badge has been awarded. Give us feedback at {{feedback_faq_url}}.
27 {% for badge in badges %}
28 <div style="clear:both;line-height:30px">
29 <div style="float:left;min-width:30px;text-align:right;height:30px">
30 {% for a in mybadges %}
31 {% ifequal a.badge_id badge.id %}
32 <span style="font-size:175%; padding-right:5px; color:#5B9058;">✔</span>
36 <div style="float:left;width:230px;">
37 <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>
39 <p style="float:left;margin-top:8px;">
40 {{ badge.description }}
50 <h3>{% trans "Community badges" %}</h3>
53 <a style="cursor:default;" title="gold badge: the highest honor and is very rare" class="medal"><span class="badge1">●</span> {% trans "gold" %}</a>
56 {% trans "gold badge description" %}
59 <a style="cursor:default;"
60 title="silver badge: occasionally awarded for the very high quality contributions"
61 class="medal"><span class="badge2">●</span> {% trans "silver" %}</a>
64 {% trans "silver badge description" %}
67 <a style="cursor:default;" title="{% trans "bronze badge: often given as a special honor" %}" class="medal">
68 <span class="badge3">●</span> {% trans "bronze" %}</a>
71 {% trans "bronze badge description" %}
76 <!-- end template badges.html -->