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

{{ t('special_matches') }}

{% for m in matches %}
{{ t('special_match') }} {{ m.game.name }}
{{ m.title }}
{{ m.starts_at.strftime('%H:%M · %m/%d') }}
{{ m.entry_fee }} {{ t('entry_fee') }} · {{ m.prize_pool }} · {{ m.current_players }}/{{ m.capacity }}
{% if user and user.id in m.participants|map(attribute='user_id')|list %} ✓ {{ t('you_are_in') }} {% else %} {{ t('join_now') }} {% endif %}
{% else %}
{{ t('no_matches_today') }}
{% endfor %}
{% endblock %}