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.
28 lines
1.2 KiB
28 lines
1.2 KiB
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Beheer Vragenlijst</h2>
|
|
<a href="{{ url_for('admin.add_question') }}">Nieuwe Vraag Toevoegen</a>
|
|
<ul>
|
|
{% for question in questions %}
|
|
<li>
|
|
<strong>{{ question.text }}</strong>
|
|
<a href="{{ url_for('admin.edit_question', question_id=question.id) }}">Bewerken</a>
|
|
<a href="{{ url_for('admin.add_choice', question_id=question.id) }}">Keuze toevoegen</a>
|
|
<ul>
|
|
{% for choice in question.choices %}
|
|
<li>
|
|
<a href="{{ url_for('admin.edit_choice', choice_id=choice.id) }}">
|
|
{{ choice.text }}
|
|
</a>
|
|
{% if choice.next_question %}
|
|
- Volgende vraag: <a href="{{ url_for('admin.edit_question', question_id=choice.next_question.id) }}">{{ choice.next_question.text }}</a>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|