/proj_name/app_name/templates/polls/detail.html
HTML | 10 lines | 9 code | 1 blank | 0 comment | 0 complexity | 937edeaa585961489888126cc9381293 MD5 | raw file
Possible License(s): BSD-3-Clause
- {% extends "polls/index.html" %}
- {% block content %}
- <h2>{{ poll.question }}</h2>
- <ul>
- {% for choice in choices %}
- <li><a href="{% url vote poll.id,choice.id %}">{{ choice.choice }}</a></li>
- {% endfor %}
- </ul>
- {% endblock content %}