{% extends "base.html" %} {% load i18n template_tools %} {% block head %} {{ block.super }} {% endblock %} {% block subtitle %} {% if training.pk %} {% trans 'Training:' %} {{ training.name }} {{ training.get_version_state_display }} {% include 'trainings/training_actions.html' %} {% else %} {% trans 'New training' %} {% endif %} {% endblock %} {% block actions %} {% trans 'Back to the list of trainings' %} {% if user.is_trainer and user_can_have_survey %} {% trans 'Survey' %} {% endif %} {% endblock %} {% block main %} {% if training.pk and not training.is_editable %}
{% blocktrans with training_name=training.name training_version_state=training.get_version_state_display %} The training "{{ training_name }}" is "{{ training_version_state }}". Therefore, edition is not allowed anymore. In order to bring changes to it, you need to create a new draft with the button above. {% endblocktrans %}
{% endif %}
{% block section_heading %}{% endblock %} {% block section_content %}{% endblock %}
{% endblock %}