{% extends "trainings/training_details.html" %} {% load i18n %} {% block section_content %}
{% csrf_token %} {{ form.media }} {% if object.pk and not object.is_editable %} {% else %} {% include 'extras/form.html' with form=form %} {% endif %}
{% trans 'Nom' %} {{ training.name }}
{% trans 'Description' %} {{ training.description }}
{% trans 'Theme' %} {{ training.theme.name }}
{% trans 'Job profile' %} {{ training.job_profile.name }}
{% trans 'Business unit' %} {{ training.business_unit.name }}
{% if not object.pk or object.is_editable %}
{% endif %}
{% endblock %}