{% extends 'base.html' %} {% load i18n %} {% block subtitle %} {% blocktrans with evaluation_title=evaluation.title %} Delete the exercises of the evaluation {{ evaluation_title }} {% endblocktrans %} {% endblock %} {% block actions %} {% trans 'Back to the evaluation' %} {% endblock %} {% block main %}
{% csrf_token %} {% for exercise in evaluation.exercises.non_deleted %} {% endfor %}
{% endblock %}