calebasse/calebasse/agenda/templates/agenda/appointment.html @ 86dfa623
| 5c602ee1 | Benjamin Dauvergne | {% load widget_tweaks %}
|
|
<table><tr><td>
|
|||
<p>
|
|||
{{ form.date.label_tag }}
|
|||
{{ form.date|add_class:"datepicker-date" }}
|
|||
{{ form.date.errors }}
|
|||
</p>
|
|||
</td><td>
|
|||
<p>
|
|||
{{ form.time.label_tag }}
|
|||
{{ form.time }}
|
|||
{{ form.time.errors }}
|
|||
</p>
|
|||
</td><td>
|
|||
<p>
|
|||
{{ form.duration.label_tag }}
|
|||
| c897be82 | Jérôme Schneider | {{ form.duration|add_class:"mousewheel"|attr:"data-mousewheel-increment:5" }}
|
|
| 5c602ee1 | Benjamin Dauvergne | {{ form.duration.errors }}
|
|
| 74ba9776 | Benjamin Dauvergne | <div>
|
|
{{ form.duration.help_text }}
|
|||
</div>
|
|||
| 5c602ee1 | Benjamin Dauvergne | </p>
|
|
</td></tr>
|
|||
<tr>
|
|||
<td>
|
|||
<h4>{{ form.participants.label_tag }}</h4>
|
|||
<div id="intervenants">
|
|||
{{ form.participants }}
|
|||
{{ form.participants.errors }}
|
|||
</div>
|
|||
</td>
|
|||
<td>
|
|||
<h4>{{ form.patient.label_tag }}</h4>
|
|||
{{ form.patient }}
|
|||
{{ form.patient.errors }}
|
|||
</td>
|
|||
<td>
|
|||
<h4>{{ form.act_type.label_tag }}</h4>
|
|||
{{ form.act_type }}
|
|||
{{ form.act_type.errors }}
|
|||
</td>
|
|||
</tr>
|
|||
</table>
|
|||
<hr/>
|
|||
<button>Configurer la périodicité</button>
|