{% 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 %}

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

Liste des présences

{% for worker_agenda in workers_agenda %} {% endfor %}
NomArrivéePremier rendez-vous Dernier rendez-vousDépartAbsences
{{ worker_agenda.worker.first_name}} {{ worker_agenda.worker.last_name }} {{ worker_agenda.activity.arrival }}{{ worker_agenda.activity.first_appointment }} {{ worker_agenda.activity.last_appointment }}{{ worker_agenda.activity.departure }} {% for absence in worker_agenda.activity.absences %} {{ absence }}
{% endfor %}

{% 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 %} {% if not CURRENT_SERVICE_EVENTS_ONLY and not appointment.holiday and appointment.type != 'info' and appointment.services_names and service not in appointment.services_names %} {% else %} {% endif %} {% endfor %}
Heure Durée LibelléPrésence Absence Type d'acte Commentaire Intervenants
{{ appointment.begin_hour }} {% if appointment.event %}Evenement{% else %}Rendez-vous{% endif %} {% with services=appointment.other_services_names|length %} dans le{{ services|pluralize }} service{{ services|pluralize }} {% endwith %} {% for service in appointment.other_services_names %} {{ service|upper }}{% if not forloop.last %}, {% endif %} {% endfor %} {% 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 %}