{% extends 'statistics/structure.html.twig' %} {% block pageContent %}

{{ player.firstName }} {{ player.lastName }} {% if not player.firstNameEn is empty %}({{ player.firstNameEn }} {{ player.lastNameEn }}){% endif %}

    {% if player.nationality %}
  • {{ '_NATIONALITY'|trans }}: {{ player.nationality }}
  • {% endif %} {% if player.weight %}
  • {{ '_WEIGHT_'|trans }}: {{ player.weight }} kg
  • {% endif %} {% if player.getDateOfBirth() %}
  • {{ '_BIRTH_DATE_'|trans }}: {{ player.getDateOfBirth() }} ({{ player.getAge() }} years)
  • {% endif %} {% if player.height %}
  • {{ '_HEIGHT_'|trans }}: {{ player.getConvertedHeight() }} cm
  • {% endif %} {% if player.position %}
  • {{ '_PLAYER_POSITION_'|trans }}: {{ player.position }}
  • {% endif %} {% if player.foot %}
  • {{ '_FOOT_'|trans }}: {{ player.foot }}
  • {% endif %} {#
  • {{ '_PLACE_OF_BIRTH_') }} {{ player.birthPlace }}
  • #}
{% if career is defined %}
{{ '_CAREER_'|trans }}
{% for tournamentFormat in career %}
{% for team in tournamentFormat.teams %} {% endfor %}
{{ '_SEASON_'|trans }} {{ '_TEAM_'|trans }} {{ '_COMPETITIONS_'|trans }} {{ '_MINUTES_PLAYED_'|trans }} {{ '_APPEARANCES_'|trans }} {{ '_SUBSTITUTE_IN_'|trans }} {{ '_SUBSTITUTE_OUT_'|trans }} {{ '_SUBS_ON_BENCH_'|trans }} {{ '_GOALS_'|trans }} {{ '_YELLOW_CARDS_'|trans }} {{ '_SECOND_YELLOW_CARDS_'|trans }} {{ '_RED_CARDS_'|trans }}
{{ team.tournamentCalendarName }} {{ team.teamName }} {{ team.competitionName }} {{ team.minutesPlayed }} {{ team.appearances }} {{ team.substituteIn }} {{ team.substituteOut }} {{ team.subsOnBench }} {{ team.goals }} {{ team.yellowCards }} {{ team.secondYellowCards }} {{ team.redCards }}
{% endfor %}
{% endif %} {% endblock %}