From e327905896c56d86225eabae055770f7effe23c1 Mon Sep 17 00:00:00 2001 From: Aponovi Date: Wed, 1 Jun 2022 12:23:43 +0200 Subject: [PATCH] already fix issue #6 in issue #2 --- server.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server.py b/server.py index cb09f97ff..d4937950b 100644 --- a/server.py +++ b/server.py @@ -5,6 +5,7 @@ POINTS_FOR_A_PLACE = 1 MAX_PLACES_PER_COMPETITION = 12 + def loadClubs(): with open('clubs.json') as c: listOfClubs = json.load(c)['clubs'] @@ -70,6 +71,7 @@ def purchasePlaces(): flash('Great-booking complete!') return render_template('welcome.html', club=club, competitions=competitions) + # TODO: Add route for points display