{% extends 'base.html' %} {% load i18n %} {% block subtitle %} {% blocktrans with question_title=question.title %} Sort the answers of the question "{{ question_title }}" {% endblocktrans %} {% endblock %} {% block actions %} {% trans 'Back to the quiz' %} {% endblock %} {% block head %} {{ block.super }} {% include "cms/includes/orderable-head.html" %} {% endblock %} {% block main %} {% csrf_token %} {% for answer in workshopstepquestionanswer_list %} {% endfor %}
{% trans 'Name'%} {% trans 'Order' %}
{{ answer.label }} {{ answer.sort_order_display|safe }}
{% endblock %}