{% extends "layout/2-columns-left.html" %} {% load i18n %} {% block head %} {{ block.super }} {% endblock %} {% block subtitle %} {% trans "Training list" %} {% endblock %} {% block actions %} {% trans "Add a training" %} {% endblock %} {% block column_left %}
{% endblock %} {% block column_main %}| {% trans 'Name' %} | {% trans 'Business unit' %} | {% trans 'Last modification' %} | {% trans 'Status' %} | {% trans 'Actions' %} | {% if user_can_have_survey %}{% trans 'Survey' %} | {% endif %}
|---|---|---|---|---|---|
| {{ training.name }} | {{ training.business_unit.name }} | {{ training.created_at }} | {% include 'trainings/training_state.html' %} | {% include 'trainings/training_actions.html' %} | {% if user_can_have_survey %}{% endif %} |