37 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2023-11-01 14:11:00 +01:00
<!--
-- Sicherheitsunterweisung
-- Copyright (C) 2023 Jason Streifling
--
-- This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
{{define "answers"}}
{{range .Question.Answers}}
<div>
<input type="radio" name="answer" id="answer-{{.ID}}" value="{{.ID}}" />
2023-11-02 17:52:04 +01:00
{{if .IsImage}}
<img src="{{.Text}}" alt="{{.Text}}" />
{{else}}
<label for="answer-{{.ID}}">{{.Text}}</label>
2023-11-02 17:52:04 +01:00
{{end}}
</div>
{{end}}
{{end}}
2023-10-10 18:43:48 +02:00
{{define "content"}}
<h2>Frage {{.QuestionID}}</h2>
<p>{{.Question.Text}}</p>
2023-10-10 18:43:48 +02:00
<form>
{{template "answers" .}}
<button hx-post="/submit-answer/{{.BriefingID}}/{{.Login}}/{{.QuestionID}}/" hx-target="#content" type="submit">
Weiter
</button>
</form>
{{end}}