{% extends "base.html" %} {% block title %}Achievements โ€” FORGE Academy{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

๐Ÿ† Achievement Vault

{{ earned|length }} / {{ all_achievements|length }} earned {% if fa_user %} ยท {{ fa_user.xp|default(0) }} XP total{% endif %}

โ† Hub
{% for a in all_achievements %} {% set is_earned = a.slug in earned %}
{% if is_earned %}
โœ“
{% endif %}
+{{ a.xp_bonus }} XP
{{ a.icon }}
{{ a.title }}
{{ a.description }}
{{ a.rarity|default('common') }} {% if not is_earned %}
Locked
{% else %}
Earned โœ“
{% endif %}
{% endfor %}
{% endblock %}