diff --git a/templates/player_page.html b/templates/player_page.html index 5bea5af..e21424b 100644 --- a/templates/player_page.html +++ b/templates/player_page.html @@ -1,19 +1,21 @@ {% extends "master.html" %} +{% block title %}{{ player.first_names }} {{ player.last_name }}{% endblock %} + {% block content %} -

{{ player.first_names }}

+

{{ player.first_names }} {{ player.last_name }}

Latest Competition: {{ league.name|nullable }}

{{ league_stats.points }} {{ league_stats.goals }} -{{ league_stats.goals }} +{{ league_stats.assists }}

Lifetime Stats

{{ lifetime_stats.points }} {{ lifetime_stats.goals }} -{{ lifetime_stats.goals }} +{{ lifetime_stats.assists }} {% endblock %}