{% extends 'base.html' %} {% block content %}

{% if question %}Frage bearbeiten{% else %}Reihenfolge Frage{% endif %}

Zurück zum Quiz
{% csrf_token %}
{% if image %} Bild der Frage {% endif %}
{% if question and question.data.options %} {% for option in question.data.options|dictsort:"order" %}
{{ forloop.counter }}.
{% endfor %} {% else %} {% for i in "1234" %}
{{ forloop.counter }}.
{% endfor %} {% endif %}
Abbrechen
{% endblock %}