summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrail Finder (aider) <wohilas@gmail.com>2025-04-05 13:39:11 +0300
committerGrail Finder (aider) <wohilas@gmail.com>2025-04-05 13:39:11 +0300
commit5a1c686097eea633cc705b7823890c2df446ed1a (patch)
treed21cf036c94ec3da0f47cdc9b49585b5cc6b00ef
parent6dc12d1ac41b8d631c2f86ba893b3c4148433060 (diff)
refactor: update test question to use individual option fields
-rw-r--r--internal/handlers/main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/handlers/main.go b/internal/handlers/main.go
index c167cae..c4222f4 100644
--- a/internal/handlers/main.go
+++ b/internal/handlers/main.go
@@ -69,7 +69,10 @@ func (h *Handlers) MainPage(w http.ResponseWriter, r *http.Request) {
testQuestion := &models.Question{
ID: 1,
Text: "___ du keine Zweifel daran?",
- Options: []string{"Haben", "Hast", "Hat", "Habt"},
+ Option1: "Haben",
+ Option2: "Hast",
+ Option3: "Hat",
+ Option4: "Habt",
CorrectIndex: 1,
}
tmpl.ExecuteTemplate(w, "main", testQuestion)