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

{{ training.name }}

{% if current_user.role == 'admin' %} Modifier {% endif %} Retour
Informations

Date : {{ training.start_date.strftime('%d/%m/%Y') }} au {{ training.end_date.strftime('%d/%m/%Y') }}

{% if training.location %}

Lieu : {{ training.location }}

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

Max participants : {{ training.max_participants }}

{% endif %} {% if training.description %}

Description : {{ training.description }}

{% endif %}
Participants ({{ participants|length }})
{% if participants %}
    {% for p in participants %}
  • {{ p.user.full_name }} {{ p.status }}
  • {% endfor %}
{% else %}

Aucun participant inscrit.

{% endif %} {% set is_registered = participant_users.get(current_user.id) %}
{% endblock %}