{% 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 %}
{% csrf_token %}

{% blocktrans trimmed with pool_name=pool.name question_title=question.title %} Are you sure you want to delete the question "{{ question_title }}" of the pool "{{ pool_name }}"? {% endblocktrans %}

{% trans 'Cancel' %}
{% endblock %}