ungleich-learning-circle/pedro/django-tutorial/mysite/polls/templates/polls/detail.html

7 lines
144 B
HTML
Raw Normal View History

2020-07-13 11:55:28 +00:00
<h1>{{ question.question_text }}</h1>
<ul>
{% for choice in question.choice_set.all %}
<li>{{ choice.choice_text }}</li>
{% endfor %}
</ul>