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

{{ t('advanced_search') }}

{{ t('clear') }}

{{ t('matches') }} ({{ matches|length }})

🌐 {{ t('region') }}: {% if user_region == 'ir' %}🇮🇷 ایران{% elif user_region == 'eu' %}🇪🇺 اروپا{% elif user_region == 'ea' %}🌏 آسیا{% elif user_region == 'na' %}🇺🇸 آمریکا{% else %}🌍 گلوبال{% endif %} — {{ t('region_note') | default('Matches in your region only') }}
{% for m in matches %}
{{ m.title }} {{ m.status }}
{{ m.game.name }} · {{ m.starts_at.strftime('%H:%M %m/%d') }}
{{ m.current_players }} : {{ m.capacity }}
{% if m.region == 'ir' %}🇮🇷 IR{% elif m.region == 'eu' %}🇪🇺 EU{% elif m.region == 'ea' %}🌏 EA{% elif m.region == 'na' %}🇺🇸 NA{% else %}🌍 GL{% endif %} {% if m.id not in registered_match_ids %} {{ t('join_now') }} {% else %} {{ t('you_are_in') }} {% endif %}
{% else %}
{{ t('no_matches') }}
{% endfor %}
{% endblock %}