Projet

Général

Profil

Télécharger (1,53 ko) Statistiques
| Branche: | Tag: | Révision:

calebasse / calebasse / dossiers / templates / dossiers / quotations_patients_table_content.html @ 97fbc132

1
<thead>
2
  <tr>
3
    <th colspan="2">N° dossier
4
    </th><th rowspan="2">Nom</th>
5
    <th rowspan="2">Prénom</th>
6
    <th rowspan="2">Date de naissance</th>
7
    <th rowspan="2">État du dossier</th>
8
    <th rowspan="2">Date du prochain rendez-vou</th>
9
    <th rowspan="2">Date du dernier rendez-vous</th>
10
    <th rowspan="2">Mises</th>
11
    <th rowspan="2">ANAP</th>
12
  </tr>
13
  <tr>
14
    <th>papier</th>
15
    <th>inform.</th>
16
  </tr>
17
</thead>
18
<tbody>
19
  {% for patient_record in patient_records %}
20
  <tr style="display: table-row;" class="pr-line {{ patient_record.state.status.type|lower }}" data-link="{{ patient_record.object.id }}/view">
21
    <td>{{ patient_record.object.paper_id|default_if_none:"" }}</td>
22
    <td>{{ patient_record.object.id }}</td>
23
    <td><span class="lastname">{{ patient_record.object.last_name }}</span></td>
24
    <td>{{ patient_record.object.first_name }}</td>
25
    <td>{{ patient_record.object.birthdate|date:"d-m-Y" }}</td>
26
    <td class="{{ patient_record.state.status.type|lower }}">{{ patient_record.state.status.name }} le {{ patient_record.state.date_selected|date:"d-m-Y" }}</td>
27
    <td>{% if patient_record.next_rdv_date %}
28
      {{ patient_record.next_rdv_date|date:"d-m-Y, H:i" }}
29
      {% endif %}
30
    </td>
31
    <td>{% if patient_record.last_rdv_date %}
32
      {{ patient_record.last_rdv_date|date:"d-m-Y, H:i" }}
33
      {% endif %}</td>
34
    <td>{% if patient_record.mises %}<span class="icon-ok"></span>{% endif %}</td>
35
    <td>{% if patient_record.anap %}<span class="icon-ok"></span>{% endif %}</td>
36
  </tr>
37
  {% endfor %}
38
</tbody>
(29-29/34)