{% extends "base.html" %} {% load extra_tags %} {% load humanize %} {% load i18n %} {% block title %}{% spaceless %}{% trans "Badges summary" %}{% endspaceless %}{% endblock %} {% block forejs %} {% endblock %} {% block content %}
{% trans "Badges" %}

{% trans "Community gives you awards for your questions, answers and votes." %}
{% blocktrans %}Below is the list of available badges and number of times each type of badge has been awarded. Give us your feedback. {% endblocktrans %}

{% for badge in badges %}
{% for a in mybadges %} {% ifequal a.badge_id badge.id %} {% endifequal %} {% endfor %}
 {{ badge.name }} × {{ badge.awarded_count|intcomma }}

{{ badge.description }}

{% endfor %}
{% endblock %} {% block sidebar %}

{% trans "Community badges" %}

 {% trans "gold" %}

{% trans "gold badge description" %}

 {% trans "silver" %}

{% trans "silver badge description" %}

 {% trans "bronze" %}

{% trans "bronze badge description" %}

{% endblock %}