Created
February 26, 2020 13:18
-
-
Save bastianccm/cb4b4efe90a6eda8061f23ded351bc7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>{{ .Question.QuestionText }}</h1> | |
{{ if .ErrorMessage }}<p><strong>{{ .ErrorMessage }}</strong></p>{{ end }} | |
<form action="{{ url "vote" "question_id" (print .Question.ID) }}" method="post"> | |
{{ range $i, $choice := .Question.Choices }} | |
<input type="radio" name="choice" id="choice{{ $i }}" value="{{ $choice.ID }}"> | |
<label for="choice{{ $i }}">{{ $choice.ChoiceText }}</label><br> | |
{{end}} | |
<input type="submit" value="Vote"> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment