{% 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}}.
Name |
Image |
Description |
{% for badge in badges if badge.kind==1 %}
{{badge.name}} |
| {{badge.description}} |
{% endfor %}
Granted Badges
These badges can be granted by admins.
Name |
Image |
Description |
{% for badge in badges if badge.kind==3 %}
{{badge.name}} |
| {{badge.description}} |
{% endfor %}
Unobtainable Badges
There is no way to acquire these badges if you don't already have them.
Name |
Image |
Description |
{% for badge in badges if badge.kind==4 %}
{{badge.name}} |
| {{badge.description}} |
{% endfor %}
{% endblock %}