1 {% extends "base_content.html" %}
 
   2 <!-- template badge.html -->
 
   7 {% block title %}{% spaceless %}{{ badge.name }} - {% trans "Badge" %}{% endspaceless %}{% endblock %}
 
   9        <script type="text/javascript">
 
  11             $("#nav_badges").attr('className',"on");
 
  17 <div id="main-bar" class="headNormal">
 
  20 <div id="main-body" style="width:100%;margin-bottom:20px">
 
  22         <a href="{{badge.get_absolute_url}}" title="{{ badge.get_type_display }} : {{ badge.description }}" class="medal"><span class="badge{{ badge.type }}">●</span> {{ badge.name }}</a> {{ badge.description }}
 
  25         {% if badge.awarded_count %}
 
  26         <p style="float:left"><span class="count">{{ award_count|intcomma }}</span>
 
  27         <strong>{% trans "The users have been awarded with badges:" %}</strong></p>
 
  30     <div id="award-list" style="clear:both;margin-left:20px;line-height:25px;">
 
  31         {% for award in awards %}
 
  32         <p style="width:220px;float:left">{% user_signature award.user "badges" %}<span class="tag-number"> × {{ award.count|intcomma }}</span></p>
 
  38 <!-- end template badge.html -->