1
|
<ul>
|
2
|
{% if contact.id == object.id %}
|
3
|
{% if object.child_custody %}
|
4
|
<li><label>Garde parentale :</label>
|
5
|
{{ object.child_custody }}</li>
|
6
|
{% endif %}
|
7
|
{% endif %}
|
8
|
{% if contact.parente %}
|
9
|
<li><label>Lien avec le patient :</label>
|
10
|
{{ contact.parente }}</li>
|
11
|
{% endif %}
|
12
|
{% if contact.mobile %}
|
13
|
<li>
|
14
|
<span class="icon-mobile">{{ contact.mobile }} (perso)</span>
|
15
|
</li>
|
16
|
{% endif %}
|
17
|
{% if contact.phone %}
|
18
|
<li>
|
19
|
<span class="icon-phone">{{ contact.phone }} (pro)</span>
|
20
|
</li>
|
21
|
{% endif %}
|
22
|
{% if contact.email %}
|
23
|
<li>
|
24
|
<label>Courriel :</label>
|
25
|
{{ contact.email }}
|
26
|
</li>
|
27
|
{% endif %}
|
28
|
{% if contact.contact_comment and contact.id != object.id %}
|
29
|
<li>
|
30
|
<label>Commentaire :</label>
|
31
|
{{ contact.contact_comment }}
|
32
|
</li>
|
33
|
{% endif %}
|
34
|
{% if contact.job %}
|
35
|
<li>
|
36
|
<label>Profession :</label>
|
37
|
{{ contact.job }}
|
38
|
</li>
|
39
|
{% endif %}
|
40
|
<span class="social-security-contact">
|
41
|
<label class="social-security-label">Infos d'assuré [+]</label>
|
42
|
<ul>
|
43
|
{% if contact.id == object.id %}
|
44
|
{{ object.first_name }} <span class="lastname">{{ object.last_name }}</span>
|
45
|
{% endif %}
|
46
|
{% if contact.social_security_id %}
|
47
|
<li><label>Numéro d'assuré social :</label>
|
48
|
{{ contact.social_security_id }} {{ contact.get_control_key }}</li>
|
49
|
{% endif %}
|
50
|
{% if contact.birthdate %}
|
51
|
<li><label>Date de naissance :</label>
|
52
|
{{ contact.birthdate|date:"SHORT_DATE_FORMAT" }}</li>
|
53
|
{% endif %}
|
54
|
{% if contact.birthplace %}
|
55
|
<li><label>Lieu de naissance :</label>
|
56
|
{{ contact.birthplace }}</li>
|
57
|
{% endif %}
|
58
|
{% if contact.begin_rights %}
|
59
|
<li><label>Début de droits :</label>
|
60
|
{{ contact.begin_rights }}</li>
|
61
|
{% endif %}
|
62
|
{% if contact.end_rights %}
|
63
|
<li><label>Fin de droits :</label>
|
64
|
{{ contact.end_rights }}</li>
|
65
|
{% endif %}
|
66
|
{% if contact.health_center %}
|
67
|
<li><label>Caisse :</label>
|
68
|
{{ contact.health_center }} ({{ contact.health_center.address }} {{ contact.health_center.address_complement }} {{ contact.health_center.zip_code }} {{ contact.health_center.city }})</li>
|
69
|
{% endif %}
|
70
|
{% if contact.other_health_center %}
|
71
|
<li><label>Centre spécifique :</label>
|
72
|
{{ contact.other_health_center }}</li>
|
73
|
{% endif %}
|
74
|
{% if contact.management_code %}
|
75
|
<li><label>Code de gestion :</label>
|
76
|
{{ contact.management_code }}</li>
|
77
|
{% endif %}
|
78
|
<li><label>Tiers-payant :</label>
|
79
|
{% if contact.thirdparty_payer %}
|
80
|
Oui
|
81
|
{% else %}
|
82
|
Non
|
83
|
{% endif %}
|
84
|
</li>
|
85
|
{% if contact.twinning_rank %}
|
86
|
<li><label>Rang (gémellité) :</label>
|
87
|
{{ contact.twinning_rank }}</li>
|
88
|
{% endif %}
|
89
|
</ul>
|
90
|
</span>
|
91
|
</ul>
|