Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h1>{{ poll.question }}</h1>
- {% if error_message %}<p><strong>{{ error_message }}</strong></p>
- {% else %}
- <form action="/polls/{{ poll.id }}/vote/" method="post">
- {% csrf_token %}
- {% for choice in poll.choice_set.all %}
- <input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" />
- <label for="choice{{ forloop.counter }}">{{ choice.choice }}</label><br />
- {% endfor %}
- <input type="submit" value="Vote" />
- </form>
- {% endif %}
- <a href="../welcome"> Home</a>
- <a href="../logout"> Logout</a>
Advertisement
Add Comment
Please, Sign In to add comment