1 {% extends "base.html" %}
 
   2 <!-- template badges.html -->
 
   6 {% block title %}{% spaceless %}{% trans "Badges summary" %}{% endspaceless %}{% endblock %}
 
   8 <div class="headlineA">
 
   9         <span class="headMedals">{% trans "Badges" %}</span>
 
  11 <div class="badges" id="main-body" style="width:100%">
 
  13         {% trans "Community gives you awards for your questions, answers and votes." %}
 
  14         {% blocktrans %}Below is the list of available badges and number of times each type of badge has been awarded.
 
  18         {% for badge in badges %}
 
  19         <div style="clear:both;line-height:30px">
 
  20             <div style="float:left;min-width:30px;text-align:right;height:30px">
 
  21             {% for a in mybadges %}
 
  22                 {% ifequal a.badge_id badge.id %}
 
  23                  <span style="font-size:175%; padding-right:5px; color:#5B9058;">✔</span>
 
  27             <div style="float:left;width:230px;">
 
  28                 <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>
 
  30             <p style="float:left;margin-top:8px;">
 
  31                 {{ badge.description }}
 
  41     <h3>{% trans "Community badges" %}</h3>
 
  44         <a style="cursor:default;" title="{% trans "gold badge: the highest honor and is very rare" %}" class="medal"><span class="badge1">●</span> {% trans "gold" %}</a>
 
  47         {% trans "gold badge description" %}
 
  50         <a style="cursor:default;" 
 
  51                         title="{% trans "silver badge: occasionally awarded for the very high quality contributions" %}" 
 
  52                         class="medal"><span class="badge2">●</span> {% trans "silver" %}</a>
 
  55         {% trans "silver badge description" %}
 
  58         <a style="cursor:default;" title="{% trans "bronze badge: often given as a special honor" %}" class="medal">
 
  59                 <span class="badge3">●</span> {% trans "bronze" %}</a>
 
  62         {% trans "bronze badge description" %}
 
  67 <!-- end template badges.html -->