{% extends "base.html" %} {% block title %}Formations — GMAO{% endblock %} {% block content %}

Formations

{% if current_user.is_admin() %} Créer une formation {% endif %}
{% for training in trainings %}
{{ training.name }}

{{ training.start_date.strftime('%d/%m/%Y') }} - {{ training.end_date.strftime('%d/%m/%Y') }}

{% if training.location %}

{{ training.location }}

{% endif %} {% if training.max_participants %}

Max: {{ training.max_participants }} participants

{% endif %}
{% else %}

Aucune formation programmée.

{% endfor %}
{% endblock %}