{% extends "webapp/base.html" %} {% from "webapp/_game_logo.html" import glogo %} {% block title %}{{ game.name }} โ€” FIGHTSKILL{% endblock %} {% block content %}
{{ glogo(game, 'md') }}

{{ game.name }}

{% if game.description %}

{{ game.description }}

{% endif %}
{{ modes_with_matches|length }} {{ t('modes') }} {{ matches|length }} {{ t('matches') }}
{{ t('teams') }}
{% for mm in modes_with_matches %}
{{ mm.mode.icon }}

{{ mm.mode.name }}

{% if mm.mode.squad_size > 1 %} {{ mm.mode.squad_size }}v{{ mm.mode.squad_size }} {% elif mm.mode.squad_size == 1 %} Solo {% endif %} {% if mm.mode.description %} {{ mm.mode.description[:40] }} {% endif %}
{{ mm.matches|length }} {{ t('rooms') | default('rooms') }}
{% if mm.matches %} {% else %}
๐ŸŽฎ
{{ t('no_rooms_mode') | default('No rooms available for this mode yet.') }}
{% endif %}
{% endfor %} {% if not modes_with_matches %}
๐ŸŽฏ
{{ t('no_modes') | default('No game modes available yet.') }}
{% endif %} {% if user_teams %}

{{ t('your_teams') }}

{% for team in user_teams %}
{{ team.name }}
{{ team.member_count }} {{ t('members') }}
{{ t('manage') | default('Manage') }} ›
{% endfor %}
{% endif %}
{% endblock %}