{% extends "base.html" %} {% comment %}This view is used to confirme the deletion of a ``mtp.apps.surveys.Questio`` instance. Context ------- pool : instance of ``mtp.apps.surveys.models.Pool`` The pool for which we display the questions. question : instance of ``mtp.apps.surveys.models.Question`` The question to delete. Todo ---- Clicking on or ``cancel`` should return on the page the user came from. {% endcomment %} {% load i18n %} {% block body_class %}{{ block.super }} page-cms-surveys page-cms-surveys-questions{% endblock %} {% block subtitle %} {% trans 'Deletion confirmation' %} {% endblock %} {% block actions %} {% trans 'Back to the question' %} {% endblock %} {% block main %}
{% endblock %}