{% 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 %} {% endfor %}
Dossier État Type d'acte Facturé Facturable Perdu Pause Intervenants Heure Durée
{{ act.patient.paper_id|default_if_none:'' }} ({{ act.patient.id }}) {{ act.patient.first_name }} {{ act.patient.last_name }} {{ act.get_state }} {{ act.act_type }} {% if act.is_billed %}{% if act.invoice_set.all %}{{ act.invoice_set.all.0.number }}{% else %}Ancienne facturation{% endif %}{% endif %} {{ act.is_billable|yesno:"Oui,Non," }}{% if act.switch_billable %} (I){% endif %} {{ act.is_lost|yesno:"Oui,Non," }} {{ act.pause|yesno:"Oui,Non," }} {% for doctor in act.doctors.all %} {{ doctor }} {% if not forloop.last %}
{% endif %} {% endfor %}
{{ act.time|date:"H:i" }} {{ act.duration }}
{% endblock %} {% block dialogs %} {% endblock %}