Revision 76974b6f
Added by Benjamin Dauvergne almost 12 years ago
calebasse/agenda/templates/agenda/ajax-worker-tab.html | ||
---|---|---|
23 | 23 |
{% endif %} |
24 | 24 |
{% if appointment.event_id %} |
25 | 25 |
{% if appointment.patient_record_id %} |
26 |
<button title="Éditer un rendez-vous" class="edit-appointment icon-edit" data-occurrence-id="{{ appointment.occurrence_id }}"></button>
|
|
26 |
<button title="Éditer un rendez-vous" class="edit-appointment icon-edit" data-event-id="{{ appointment.event_id }}"></button>
|
|
27 | 27 |
{% else %} |
28 |
<button title="Éditer un événement" class="edit-event icon-edit" data-occurrence-id="{{ appointment.occurrence_id }}">
|
|
28 |
<button title="Éditer un événement" class="edit-event icon-edit" data-event-id="{{ appointment.event_id }}">
|
|
29 | 29 |
{% endif %} |
30 |
<button class="remove-appointment icon-remove-sign" title="Supprimer un rendez-vous" data-occurrence-id="{{ appointment.occurrence_id }}" data-rdv="{{ appointment.title }}"></button>
|
|
30 |
<button class="remove-appointment icon-remove-sign" title="Supprimer un rendez-vous" data-event-id="{{ appointment.event_id }}" data-rdv="{{ appointment.title }}"></button>
|
|
31 | 31 |
{% endif %} |
32 | 32 |
</span> |
33 | 33 |
</h3> |
... | ... | |
69 | 69 |
</p> |
70 | 70 |
<a href="/{{ service }}/dossiers/{{ appointment.patient_record_id }}/view" target="_blank">Dossier patient</a> - |
71 | 71 |
<a href="/{{ service }}/dossiers/{{ appointment.patient_record_id }}/view#tab=5" target="_blank">Prochains rendez-vous</a> - |
72 |
<a href="#" class="generate-mail-btn" data-dossier-id="{{ appointment.patient_record_id }}" data-occurence-id="{{ appointment.occurrence_id }}" data-next-url="{{ request.get_full_path }}">Courrier</a> |
|
72 |
<a href="#" class="generate-mail-btn" data-dossier-id="{{ appointment.patient_record_id }}" data-date="{{date}}" data-occurence-id="{{ appointment.occurrence_id }}" data-next-url="{{ request.get_full_path }}">Courrier</a>
|
|
73 | 73 |
{% endif %} |
74 | 74 |
{% if appointment.validation %} |
75 | 75 |
<div><span>{% if appointment.validation.1 %}<strong>{{ appointment.validation.2 }}</strong>, le {{ appointment.validation.1.created }} par {{ appointment.validation.1.author }} |
Also available in: Unified diff
agenda/actes/dossiers: move Occurence fields into Event, add recurring events support