mirror of
https://github.com/skoobasteeve/django-movies.git
synced 2026-03-21 20:18:58 +00:00
14 lines
288 B
HTML
14 lines
288 B
HTML
{% if latest_question_list %}
|
|
<ul>
|
|
{% for question in latest_question_list %}
|
|
<li>
|
|
<a href="{% url 'polls:detail' question.id %}"
|
|
>{{ question.question_text }}</a
|
|
>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p>No polls are available.</p>
|
|
{% endif %}
|