PageRenderTime 12ms CodeModel.GetById 8ms RepoModel.GetById 1ms app.codeStats 0ms

/proj_name/app_name/templates/polls/detail.html

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