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

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

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

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

{{ date|date:"DATE_FORMAT"|title }}

{% for appointment in worker_agenda.appointments %} {% endfor %}
Heure Durée LibelléPrésence Absence Type d'acte Commentaire Intervenants
{{ appointment.begin_hour }} {% if appointment.length %}{{ appointment.length }}min{% endif %} {% if appointment.patient_record_id %} {% if appointment.patient_record_paper_id %} {{ appointment.patient_record_paper_id }} {% else %} Pas de numéro papier. {% endif %} {% 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 %} {% if appointment.workers and appointment.workers|length > 10 %} {{ appointment.workers|length }} intervenants {% else %} {% for worker in appointment.workers %} {{ worker.last_name }} {{ worker.first_name }}
{% endfor %} {% endif %}
{% endif %} {% endfor %} {% endblock %}