Skip to content

Instantly share code, notes, and snippets.

@bastianccm
Created February 26, 2020 13:18
Show Gist options
  • Save bastianccm/cb4b4efe90a6eda8061f23ded351bc7f to your computer and use it in GitHub Desktop.
Save bastianccm/cb4b4efe90a6eda8061f23ded351bc7f to your computer and use it in GitHub Desktop.
<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