From a8eda4078d2a92999d9c8697c0a5306be7d844a7 Mon Sep 17 00:00:00 2001 From: Vivek Santayana Date: Mon, 6 Oct 2025 14:50:00 +0100 Subject: [PATCH 1/2] Added Barrowland Bears Korfball Club to list of clubs dropdown --- ref-test/app/quiz/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ref-test/app/quiz/views.py b/ref-test/app/quiz/views.py index e87c2b1..87b498e 100644 --- a/ref-test/app/quiz/views.py +++ b/ref-test/app/quiz/views.py @@ -30,6 +30,7 @@ def _instructions(): @quiz.route('/start/', methods=['GET', 'POST']) def _start(): clubs = [ + 'Barrowland Bears Korfball Club', 'Dundee Korfball Club', 'Edinburgh City Korfball Club', 'Edinburgh Mavericks Korfball Club', From 716206dc650615865fa444cf68a81d30997f2486 Mon Sep 17 00:00:00 2001 From: Vivek Santayana Date: Mon, 6 Oct 2025 14:50:18 +0100 Subject: [PATCH 2/2] Disable randomisation --- ref-test/app/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref-test/app/api/views.py b/ref-test/app/api/views.py index 1b4c2cd..9bd892d 100644 --- a/ref-test/app/api/views.py +++ b/ref-test/app/api/views.py @@ -43,7 +43,7 @@ def _fetch_questions(): data_path = dataset.get_file() with open(data_path, 'r') as data_file: data = loads(data_file.read()) - questions = generate_questions(data) + questions = generate_questions(dataset:data, randomise:false) return jsonify({ 'time_limit': end_time, 'questions': questions,