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.
14 lines
384 B
14 lines
384 B
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>{{ question.text }}</h2>
|
|
<form method="POST">
|
|
{% for choice in question.choices %}
|
|
<label>
|
|
<input type="radio" name="choice" value="{{ choice.id }}"> {{ choice.text }}
|
|
</label><br>
|
|
{% endfor %}
|
|
<button type="submit">Volgende</button>
|
|
</form>
|
|
{% endblock %}
|