28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Django Polls Details</title>
|
|
</head>
|
|
|
|
<body>
|
|
<form action="{% url 'polls:vote' question.id %}" method="post">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>
|
|
<h1>{{ question.question_text }}</h1>
|
|
</legend>
|
|
{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
|
|
{% for choice in question.choice_set.all %}
|
|
<input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}">
|
|
<label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br>
|
|
{% endfor %}
|
|
</fieldset>
|
|
<input type="submit" value="Vote" style="font-size:1.5rem; border-radius: 10px; margin-top: 20px; width: 200px; height: 50px; background-color: lightblue">
|
|
</form>
|
|
</body>
|
|
|
|
</html> |