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 %}