{% extends "base.twig" %} {% import "macros/messagebox.twig" as messagebox %} {% block page_title %} {{ i18n.getMessage("teamoftheday_navlabel") }} {% endblock %} {% block page_content %}

{{ i18n.getMessage("entity_league") }}

{% if seasons|length > 0 %}

{{ i18n.getMessage("entity_season") }}

{% if maxMatchDay > 0 %}

{{ i18n.getMessage("entity_match_spieltag") }}

{% if openMatchesExist %} {{ messagebox.box("", i18n.getMessage("teamoftheday_openmatchesexist"), "info") }} {% else %} {% if players|length > 0 %}
{% set ivSet = FALSE %} {% set dmSet = FALSE %} {% set zmSet = FALSE %} {% set omSet = FALSE %} {% set forwardSet = FALSE %} {% for player in players %} {% set frontPosition = player.position_main %} {% if frontPosition == "IV" %} {% if ivSet %} {% set frontPosition = "IV rightPos" %} {% else %} {% set frontPosition = "IV leftPos" %} {% set ivSet = TRUE %} {% endif %} {% elseif frontPosition == "DM" %} {% if dmSet %} {% set frontPosition = "ZM" %} {% else %} {% set dmSet = TRUE %} {% endif %} {% elseif frontPosition == "ZM" %} {% if zmSet %} {% set frontPosition = "OM" %} {% else %} {% set zmSet = TRUE %} {% endif %} {% elseif frontPosition == "OM" %} {% if omSet %} {% set frontPosition = "ZM" %} {% else %} {% set omSet = TRUE %} {% endif %} {% elseif frontPosition == "LS" or frontPosition == "MS" or frontPosition == "RS" %} {% if forwardSet %} {% set frontPosition = "MS rightPos" %} {% else %} {% set frontPosition = "MS leftPos" %} {% set forwardSet = TRUE %} {% endif %} {% endif %}
{% if player.memberoftopteam > 1 %} {{ player.memberoftopteam }} {% endif %} {% if player.picture|length > 0 %} {% elseif player.team_picture|length > 0 %} {% else %} {% endif %} {% if player.grade is defined %}
{% else %}
{% endif %} {{ player.player_name }}
{{ player.team_name }}
{% endfor %}
{% endif %} {% endif %} {% elseif seasonId > 0 %} {{ messagebox.box("", i18n.getMessage("teamoftheday_no_matches_in_season"), "info") }} {% endif %} {% endif %} {% endblock %}