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 class="intoMyBadges">
 
  21             {% if badge.id in mybadges %}
 
  25             <div class="badgeListItem">
 
  26                 <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>
 
  28             <p class="badgeListDescription">
 
  29                 {{ badge.description }}
 
  39     <h3>{% trans "Community badges" %}</h3>
 
  42         <span title="{% trans "gold badge: the highest honor and is very rare" %}" class="medal"><span class="badge1">●</span> {% trans "gold" %}</span>
 
  45         {% trans "gold badge description" %}
 
  49                         title="{% trans "silver badge: occasionally awarded for the very high quality contributions" %}" 
 
  50                         class="medal"><span class="badge2">●</span> {% trans "silver" %}</span>
 
  53         {% trans "silver badge description" %}
 
  56         <span title="{% trans "bronze badge: often given as a special honor" %}" class="medal">
 
  57                 <span class="badge3">●</span> {% trans "bronze" %}</span>
 
  60         {% trans "bronze badge description" %}
 
  65 <!-- end template badges.html -->