{% extends "webapp/base.html" %} {% block title %}{{ t('notifications') }} — FIGHTSKILL{% endblock %} {% block content %}
← {{ t('back') }}

{{ t('notifications') }}

{% if notifications %} {% for n in notifications %}
{% if n.type == 'match_registration' %}🎮 {% elif n.type == 'prize' %}🏆 {% elif n.type == 'team_invite' %}👥 {% elif n.type == 'support_message' or n.type == 'support_reply' %}💬 {% elif n.type == 'support_claim' %}🛡️ {% elif n.type == 'match_credentials' %}🔑 {% else %}🔔{% endif %}
{{ n.title }}
{{ n.body }}
{{ n.created_at.strftime('%Y-%m-%d %H:%M') }} {% if not n.read %} {{ t('unread') }} {% endif %}
{% if not n.read %} {% endif %}
{% endfor %} {% else %}
🔔

{{ t('no_notifications') | default('No notifications yet') }}

{% endif %}
{% endblock %}