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

Tous les agendas des intervenants du service - {{ date|date:"DATE_FORMAT" }}

Retourner à l'agenda {% endblock %} {% block agenda-content %} {% for worker_agenda in workers_agenda %} {% if worker_agenda.appointments %}

Planning de {{ worker_agenda.worker.first_name }} {{ worker_agenda.worker.last_name }}

{{ date|date:"DATE_FORMAT" }}

Remarque : {% for appointment in worker_agenda.appointments %} {% endfor %}
Heure Durée Libellé Absence Type d'acte Commentaire Intervenants
{{ appointment.begin_hour }} {% if appointment.length %}{{ appointment.length }}min{% endif %} {% if appointment.patient_record_id %} {{ appointment.patient_record_paper_id }}
({{ appointment.patient_record_id }}){% endif %}
{% if appointment.title %}{{ appointment.title }}{% endif %} {% if appointment.act_absence %}{{ appointment.act_absence }}{% endif %} {% if appointment.act_type %}{{ appointment.act_type }}{% endif %} {% if appointment.description %}{{ appointment.description }}{% endif %} {% for worker in appointment.workers %} {{ worker.last_name }} {{ worker.first_name }}
{% endfor %}
RDV : {{ worker_agenda.summary.rdv }} — Présence : {{ worker_agenda.summary.presence }} — Absence : {{ worker_agenda.summary.absence }} — Doubles : {{ worker_agenda.summary.doubles }} — Validés : {{ worker_agenda.summary.valides }}
{% endif %} {% endfor %} {% endblock %}