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

Activité du {{ service_name }} - {{ date|date:"DATE_FORMAT"|title }}

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.workers_absent %} {% endif %} {% if appointment.absent %}{{ appointment.state }}{% endif %}{{ appointment.act }} {% if appointment.len_participants > 10 %} {% if appointment.workers_absent %}{% endif %} {{ appointment.len_participants }} intervenants {% if appointment.workers_absent %}{% endif %} {% else %} {% for participant in appointment.participants %} {% if participant in appointment.workers_absent %}{% endif %} {{ participant.last_name }} {{ participant.first_name }}
{% if participant in appointment.workers_absent %}
{% endif %} {% endfor %} {% endif %}
{% endblock %}