blob: 0eda969d4c926692743662821593c447c69620d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{{define "feedback"}}
{{if .Correct}}
<div class="correct-feedback">
<div class="correct-answer">Correct!</div>
<div class="explanation">{{.Explanation}}</div>
{{if .ShowNext}}
<button
hx-get="/next-question?current_id={{.ID}}"
hx-target="#ancestor"
hx-swap="outerHTML"
class="next-button"
data-testid="next-button">
Next Question →
</button>
{{end}}
</div>
{{else}}
<div class="error-feedback">
<div class="wrong-answer">Try Again</div>
<div class="explanation">{{.Explanation}}</div>
{{if .ShowNext}}
<button
hx-get="/next-question?current_id={{.ID}}"
hx-target="#ancestor"
hx-swap="outerHTML"
class="next-button"
data-testid="next-button">
Next Question →
</button>
{{end}}
</div>
{{end}}
{{end}}
|