18 lines
432 B
18 lines
432 B
3 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Title</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% if latest_question_list %}
|
||
|
<ul>
|
||
|
{% for question in latest_question_list %}
|
||
|
<li><a href="https://127.0.0.1/polls/{{ question.id }}/">{{ question.question_text }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% else %}
|
||
|
<p>No polls are available.</p>
|
||
|
{% endif %}
|
||
|
</body>
|
||
|
</html>
|