From 89689f1204f93977ab14a93fee7d364830246d58 Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Sun, 16 Jul 2023 17:01:09 -0600 Subject: [PATCH] Use assists for assists column --- templates/player_page.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 %}