{% load custom_filters %} {% load static %} {{ player.firstname }} {{ player.lastname }} - Player Details

{{ player.firstname }} {{ player.lastname }}

Player Bio

{{ player.name }}

Date of Birth: {{ dob }}

Height: {{ player.height }} cm

Weight: {{ player.weight }} kg

Place of Birth: {% if player.cityofbirth %} {{ player.cityofbirth }}{% if player.stateofbirth or player.countryofbirth %},{% endif %} {% endif %} {% if player.stateofbirth %} {{ player.stateofbirth }}{% if player.countryofbirth %},{% endif %} {% endif %} {{ player.countryofbirth }}

{% if regular_season_gk_stats %}

Goalkeeper Statistics (Regular Season)

{% for gk in regular_season_gk_stats %} {% endfor %}
Season Team Wins Losses Draws Minutes Goals Allowed GAA Shutouts (90+ min)
{{ gk.year }} {{ gk.team }} {{ gk.wins }} {{ gk.losses }} {{ gk.draws }} {{ gk.minutes }} {{ gk.goals_allowed }} {{ gk.gaa }} {{ gk.shutouts }}
Total - {{ total_regular_gk_stats.wins }} {{ total_regular_gk_stats.losses }} {{ total_regular_gk_stats.draws }} {{ total_regular_gk_stats.minutes }} {{ total_regular_gk_stats.goals_allowed }} {{ total_regular_gk_stats.gaa }} {{ total_regular_gk_stats.shutouts }}
{% endif %} {% if playoff_gk_stats %}

Goalkeeper Statistics (Playoffs)

{% for gk in playoff_gk_stats %} {% endfor %}
Season Team Wins Losses Draws Minutes Goals Allowed GAA Shutouts (90+ min)
{{ gk.year }} {{ gk.team }} {{ gk.wins }} {{ gk.losses }} {{ gk.draws }} {{ gk.minutes }} {{ gk.goals_allowed }} {{ gk.gaa }} {{ gk.shutouts }}
Total - {{ total_playoff_gk_stats.wins }} {{ total_playoff_gk_stats.losses }} {{ total_playoff_gk_stats.draws }} {{ total_playoff_gk_stats.minutes }} {{ total_playoff_gk_stats.goals_allowed }} {{ total_playoff_gk_stats.gaa }} {{ total_playoff_gk_stats.shutouts }}
{% endif %}

Player Statistics (Regular Season)

{% for stat in regular_season_stats %} {% endfor %}
Season Team Goals PK Goals Yellow Cards Red Cards
{{ stat.year }} {{ stat.team }} {{ stat.goals }} {{ stat.pk_goals }} {{ stat.yellow_cards }} {{ stat.red_cards }}
Total - {{ total_regular_player_stats.goals }} {{ total_regular_player_stats.pk_goals }} {{ total_regular_player_stats.yellow_cards }} {{ total_regular_player_stats.red_cards }}
{% if playoff_stats %}

Player Statistics (Playoffs)

{% for stat in playoff_stats %} {% endfor %}
Season Team Goals PK Goals Yellow Cards Red Cards
{{ stat.year }} {{ stat.team }} {{ stat.goals }} {{ stat.pk_goals }} {{ stat.yellow_cards }} {{ stat.red_cards }}
Total - {{ total_playoff_player_stats.goals }} {{ total_playoff_player_stats.pk_goals }} {{ total_playoff_player_stats.yellow_cards }} {{ total_playoff_player_stats.red_cards }}
{% endif %}