{% extends "agenda/base.html" %} {% load widget_tweaks %} {% load url from future %} {% load apptags %} {% block extrascripts %} {{ block.super }} {% endblock %} {% block appbar %}

Rendez-vous périodiques{% if worker %} de {{ worker }}{% endif %}

Retourner à l'agenda {% endblock %} {% block content %}
{% if request.GET %}

{{ object_list|length }} évènement(s) trouvé(s).

{% endif %} {% for event in object_list %}

{% if event.patient %}Rendez-vous patient{% else %}Évènement{% endif %}: {{ event.recurrence_description|lower }}{{ event.start_datetime.time }} {% if event.title %} — {{ event.title }} {% endif %} {% if event.patient.paper_id %} — {{ event.patient.paper_id }} {% endif %} {% if event.length %} — {{ event.length }} mn {% endif %} {% if event.workers_initial %} — {{ event.workers_initial }} {% endif %} {% if event.ressource %} — {{ event.ressource }} {% endif %} {% for other_service in event.services.all %} {% if other_service.name != service_name %} {% endif %} {% endfor %} {% if event.description %} {% endif %} {% if event.event_type_id == 1 %} {% else %}

{% if event.act_type %}

Type: {{ event.act_type }}

{% endif %}

Avec: {% for participant in event.participants.all %} {{ participant }}{% if not forloop.last %}, {% endif %} {% endfor %}

{% endfor %} {% if not request.GET %}
Utilisez le formulaire de recherche sur la gauche de l'écran pour afficher les rendez-vous périodiques correspondants.
{% elif not object_list %}
Pas de résultat pour votre recherche
{% endif %}
{% endblock %} {% block dialogs %} {% endblock %}