From fbcfe8fa6c4880853d3fd07691c27b961b6be75f Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Tue, 18 Apr 2023 14:07:14 -0600 Subject: [PATCH] Update templates --- templates/game_list.html | 2 +- templates/player_page.html | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/templates/game_list.html b/templates/game_list.html index 30cdf93..c8e0fe3 100644 --- a/templates/game_list.html +++ b/templates/game_list.html @@ -10,7 +10,7 @@

Games

    {% for game in games %} -
  1. {{ game.name }}
  2. +
  3. {{ game.name }}
  4. {% endfor %}
{% else %} diff --git a/templates/player_page.html b/templates/player_page.html index e9f0e81..0a7edc3 100644 --- a/templates/player_page.html +++ b/templates/player_page.html @@ -1,4 +1,6 @@ - +{% extends "master.html" %} + +{% block content %}

{{ player.name }}

Latest Competition: {{ league.name }}

@@ -14,4 +16,4 @@ {{ lifetime_stats.goals }} {{ lifetime_stats.goals }} - +{% endblock %}