{% extends "agenda/base.html" %} {% block body-class %}{{ block.super }} no-left-column{% endblock %} {% block appbar %}

Activité du service - {{ date|date:"DATE_FORMAT" }}

Retourner à l'agenda {% endblock %} {% block agenda-content %} {% for row_appointments in appointments_times %} {% for appointment in row_appointments.1.appointments %} {% if forloop.counter != 1 %} {% endif %} {% if appointment.type != 2 %}{% endif %} {% endfor %} {% endfor %}
Heure Libellé Absence Type d'acte Intervenants
{{ row_appointments.0 }}
{{ appointment.label }}{% if appointment.paper_id %} - {{ appointment.paper_id }} {% endif %} {% if appointment.absent %}{{ appointment.state }}{% endif %}{{ appointment.act }} {% if appointment.len_participants > 10 %} {{ appointment.len_participants }} intervenants {% else %} {% for participant in appointment.participants %} {{ participant.last_name }} {{ participant.first_name }}
{% endfor %} {% endif %}
{% endblock %}