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.
|
|
|
<!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="http://127.0.0.1:8000/polls/{{ question.id }}/">{{ question.question_text }}</a></li>#}
|
|
|
|
<li><a href="http://127.0.0.1:8000{% url 'polls:detail' question.id %}">{{ question.question_text }}</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% else %}
|
|
|
|
<p>No polls are available.</p>
|
|
|
|
{% endif %}
|
|
|
|
</body>
|
|
|
|
</html>
|