Files
Reskreen/polls/templates/polls/detail.html
Ambulance Clerc d84d7d9823 End tuto03
2021-12-20 18:46:18 +01:00

6 lines
149 B
HTML

<h1>{{ question.question_txt }}</h1>
<ul>
{% for choice in question.choice_set.all %}
<li>{{ choice.choice_txt }}</li>
{% endfor %}
</ul>