{% extends "default.html" %} {% block content %}


User Badges

This page describes the requirements for obtaining all profile badges.
Badges are sorted into bronze, silver, gold, and diamond tiers, based on the relative difficulty of obtaining them.

Unlockable Badges

These badges are automatically granted through different kinds of activity on {{'SITE_NAME' | app_config}}.


{% for badge in badges if badge.kind==1 %}
	
{% endfor %}
Name Image Description
{{badge.name}} {{badge.description}}

Granted Badges

These badges can be granted by admins.


{% for badge in badges if badge.kind==3 %}
	
{% endfor %}
Name Image Description
{{badge.name}} {{badge.description}}

Unobtainable Badges

There is no way to acquire these badges if you don't already have them.


{% for badge in badges if badge.kind==4 %}
	
{% endfor %}
Name Image Description
{{badge.name}} {{badge.description}}
{% endblock %}