You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
432 B
18 lines
432 B
<!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> |