{% extends "agenda/base.html" %} {% block body-class %}{{ block.super }} no-left-column{% endblock %} {% block appbar %}
Nom | Arrivée | Premier rendez-vous | Dernier rendez-vous | Départ | Absences |
---|---|---|---|---|---|
{{ 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 %} |
Heure | Durée | N° | Libellé | Présence | Absence | Type d'acte | Commentaire | Intervenants | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ appointment.begin_hour }} | {% if not CURRENT_SERVICE_EVENTS_ONLY and not appointment.holiday and appointment.type != 'info' and appointment.other_services_names %}{% 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 %} | {% else %}{% 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 %}