{% extends "base.html" %} {% comment %}This view is used to confirme the deletion of a ``mtp.apps.surveys.Pool`` instance. Context ------- user : instance of ``mtp.apps.accounts.MTPUser`` The user is expected to be a superuser or a trainer. pool : instance of ``mtp.apps.surveys.models.Pool`` The pool 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-pools{% endblock %} {% block subtitle %} {% trans 'Deletion confirmation' %} {% endblock %} {% block actions %} {% trans 'Back to the pool' %} {% endblock %} {% block main %}
{% endblock %}