🎖️
{{ leagues|length if leagues else 0 }}
Zaključene Lige
🏆
{{ tournaments|length if tournaments else 0 }}
Skupaj Turnirjev
💪
{{ tournaments|selectattr('tournament_type', 'equalto', '40_targets')|list|length if tournaments else 0 }}
40-Tarčni Turnirji
{{ tournaments|selectattr('tournament_type', 'equalto', '20_targets')|list|length if tournaments else 0 }}
20-Tarčni Turnirji
🎯
{{ tournaments|selectattr('tournament_type', 'equalto', '4_targets')|list|length if tournaments else 0 }}
4-Tarčni Turnirji
👥
{{ stats.total_players if stats else 0 }}
Omogočeni Igralci
{% if leagues %}
🎖️ Ligaška Prvenstva
{% for league in leagues %}
League Championship
{{ league.created_at[:10] if league.created_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
Liga
👥 {{ league.participants_count }} players
🎯 {{ league.tournament_type.replace('_', ' ')|title }}
📅 {{ league.archived_at[:10] if league.archived_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
{{ league.completed_tournaments }}/{{ league.total_tournaments }} tournaments
{% endfor %}
{% endif %} {% if tournaments %} {% set tournaments_40 = tournaments|selectattr('tournament_type', 'equalto', '40_targets')|list %} {% if tournaments_40 %}
💪 40-Tarčni Turnirji
{% for tournament in tournaments_40 %}
40-Tarčni Turnir
{{ tournament.created_at[:10] if tournament.created_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
40 Targets
👥 {{ tournament.participants_count }} players
🎯 {{ tournament.tournament_type.replace('_', ' ')|title }}
📅 {{ tournament.archived_at[:10] if tournament.archived_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
🏁 {{ (translations.tournament.finished if translations else 'Finished') if tournament.tournament_finished else (translations.scoring.in_progress if translations else 'Incomplete') }}
{% endfor %}
{% endif %} {% set tournaments_20 = tournaments|selectattr('tournament_type', 'equalto', '20_targets')|list %} {% if tournaments_20 %}
⚡ 20-Tarčni Turnirji
{% for tournament in tournaments_20 %}
20-Tarčni Turnir
{{ tournament.created_at[:10] if tournament.created_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
20 Targets
👥 {{ tournament.participants_count }} players
🎯 {{ tournament.tournament_type.replace('_', ' ')|title }}
📅 {{ tournament.archived_at[:10] if tournament.archived_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
🏁 {{ (translations.tournament.finished if translations else 'Finished') if tournament.tournament_finished else (translations.scoring.in_progress if translations else 'Incomplete') }}
{% endfor %}
{% endif %} {% set tournaments_4 = tournaments|selectattr('tournament_type', 'equalto', '4_targets')|list %} {% if tournaments_4 %}
🎯 4-Tarčni Turnirji
{% for tournament in tournaments_4 %}
4-Tarčni Turnir
{{ tournament.created_at[:10] if tournament.created_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
4 Targets
👥 {{ tournament.participants_count }} players
🎯 {{ tournament.tournament_type.replace('_', ' ')|title }}
📅 {{ tournament.archived_at[:10] if tournament.archived_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
🏁 {{ (translations.tournament.finished if translations else 'Finished') if tournament.tournament_finished else (translations.scoring.in_progress if translations else 'Incomplete') }}
{% endfor %}
{% endif %} {% set tournaments_other = tournaments|rejectattr('tournament_type', 'in', ['4_targets', '20_targets', '40_targets'])|list %} {% if tournaments_other %}
🏆 Drugi Turnirji
{% for tournament in tournaments_other %}
{{ translations.tournament.tournament if translations else 'Turnir' }} ({{ tournament.tournament_type or (translations.messages.unknown if translations else 'Neznano') }})
{{ tournament.created_at[:10] if tournament.created_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
Turnir
👥 {{ tournament.participants_count }} players
🎯 {{ tournament.tournament_type.replace('_', ' ')|title }}
📅 {{ tournament.archived_at[:10] if tournament.archived_at != 'Unknown' else translations.messages.unknown_date if translations else 'Neznan Datum' }}
🏁 {{ (translations.tournament.finished if translations else 'Finished') if tournament.tournament_finished else (translations.scoring.in_progress if translations else 'Incomplete') }}
{% endfor %}
{% endif %} {% endif %} {% if not leagues and not tournaments %}
📚

Ni Najdenih Arhivov

Zaključi nekaj turnirjev ali lig, da jih vidiš arhivirane tukaj

🏆 Začni Turnir
{% endif %}