{% extends "calebasse/base.html" %} {% load url from future %} {% block extrascripts %} {{ block.super }} {% endblock %} {% block header %} {{ block.super }} Actes - {{ service_name }} {% endblock %} {% block appbar %}

Saisie des actes

Retourner à l'accueil
{% endblock %} {% block content %}
{% include 'calebasse/datesel.html' %}
{% for act in object_list %} {% comment %} FIXME: comment mettre la classe non-factu ? {% endcomment %} {% endfor %}
Dossier État Type d'acte Validation Facturation Intervenants Heure Durée
{{ act.patient.id }} {{ act.patient.first_name }} {{ act.patient.last_name }} FIXME: c'est quoi état ? ({{ act.act_type.id }}) {{ act.act_type }} {{ act.get_state }} FIXME: facturation !! {% for doctor in act.doctors.all %} ({{ doctor.id }}) {{ doctor }} {% if not forloop.last %}
{% endif %} {% endfor %}
{{ act.parent_event.start_time|date:"H:i" }} {{ act.duration }}
{% endblock %} {% block dialogs %} {% endblock %}