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

{{ t('special_matches') }}

{{ t('special_desc') | default('Exclusive tournaments with special prizes.') }}

{% for m in matches %}
🏆
{{ t('featured') }} {{ m.game.name }}

{{ m.title }}

{{ m.starts_at.strftime('%H:%M %m/%d/%Y') }}
{{ m.current_players }}/{{ m.capacity }} {% if m.id not in registered_match_ids %} {{ t('join_now') }} {% else %} {{ t('you_are_in') }} {% endif %}
{% else %}
{{ t('no_special_matches') }}
{% endfor %}
{% endblock %}