{% 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. Below is the list of available badges and number of times each type of badge has been awarded." %}


{% 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 is very rare. To obtain it you have to show profound knowledge and ability in addition to actively participating in the community. Gold badge is the highest award in this community." %}

 {% trans "silver" %}

{% trans "Obtaining silver badge requires significant patience. If you got one, you've very significantly contributed to this community" %}

 {% trans "bronze" %}

{% trans "If you are active in this community, you will get this medal - still it is a special honor." %}

{% endblock %}