{% extends "two_column_body.html" %} {% block title %}{% spaceless %}{% trans %}Badges{% endtrans %}{% endspaceless %}{% endblock %} {% block content %}

{% trans %}Badges{% endtrans %}

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

{% for badge in badges %}
{% if badge.id in my_badge_ids %}
{% endif %}
 {{ badge.get_name() }} × {{ badge.awarded_count|intcomma }}

{{ badge.get_description() }}

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

{% trans %}Community badges{% endtrans %}

 {% trans %}gold{% endtrans %}

{% trans %}Gold badge is the highest award in this community. To obtain it you have to show profound knowledge and ability in addition to your active participation.{% endtrans %}

 {% trans %}silver{% endtrans %}

{% trans %}silver badge: occasionally awarded for the very high quality contributions{% endtrans %}

 {% trans %}bronze{% endtrans %}

{% trans %}bronze badge: often given as a special honor{% endtrans %}

{% endblock %}