This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
calebasse/calebasse/dossiers/templates/dossiers/patientrecord_tab6_next_rdv...

51 lines
2.3 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'dossiers/patientrecord_tab.html' %}
{% block print-button %}
<div class="print-container screen-only">
<form class="datepicker filter">
<h5>Filtrer par date</h5>
du <input type="text" name="from" />
au <input type="text" name="to" />
</form>
{{ block.super }}
</div>
<br class="clear" />
{% endblock %}
{% block content %}
<div id="tabs-6">
<table class="basic">
<thead>
<tr> <th>Date</th> <th>Pointage</th> <th>Type d'acte</th> <th>Intervenants</th> <th>Commentaire</th> </tr>
</thead>
<tbody>
{% for event, state, missing_participants, inactive_participants in next_rdvs %}
<tr>
<td><span class="date" data-start-date='{{ event.start_datetime|date:"SHORT_DATE_FORMAT"}}'>{{ event.start_datetime|date:"DATE_FORMAT" }}</span>
<span class="time">{% firstof event.start_datetime|date:"H:i"|title %}</span>{% if missing_participants or inactive_participants %} <span title="Au moins un intervenant est absent ou ne fait plus partie du service" class="icon-warning-sign absent"></span>{% endif %}</td>
<td>{% if state %}{% if state.state_name != 'VALIDE' %}<strong>{% endif %}{{ state }}{% if state.state_name != 'VALIDE' %}</strong>{% endif %}{% else %}Non pointé.{% endif %}</td>
<td>{{ event.act_type }}</td>
<td class="width-limited">{% for participant in event.participants.all %}
{% if participant in missing_participants %}
<span class="absent" title="Absent">
{{ participant.first_name }} <span class="lastname">{{ participant.last_name }}</span>
</span>
{% elif participant in inactive_participants %}
<span class="inactive" title="Ne fait plus parti du service">
{{ participant.first_name }} <span class="lastname">{{ participant.last_name }}</span>
</span>
{% else %}
{{ participant.first_name }} <span class="lastname">{{ participant.last_name }}</span>
{% endif %}
{% endfor %}</td>
{% if event.act.id %}
<td class="width-limited">{{ event.act.comment }}</td>
{% else %}
<td class="width-limited">{{ event.description }}</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}
{% block print-actions %}filter_date_bounds('#ui-tabs-6', '.basic', 'td span.date');{% endblock %}