Created
February 26, 2020 13:22
-
-
Save bastianccm/768f3fc1c48436ef60851153e3fc29aa 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> | |
<ul> | |
{{ range $choice := .Question.Choices }} | |
<li>{{ $choice.ChoiceText }} -- {{ $choice.Votes }} vote(s)</li> | |
{{ end }} | |
</ul> | |
<a href="{{ url "detail" "question_id" (print .Question.ID) }}">Vote again?</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment