templates/app/child/_partials/_modal/pointing-edit-notes.html.twig line 1
<div
id="pointing-edit-notes-modal"
class="modal fade"
tabindex="-1"
role="dialog"
aria-labelledby="pointing-edit-notes-modal-label"
aria-hidden="true"
data-bs-backdrop="static"
data-bs-keyboard="true"
>
<div class="modal-dialog modal-md">
{{ form_start(edit_poiting_note_form) }}
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="pointing-edit-notes-modal-label">
{% trans %} Modifier les notes de pointage {% endtrans %}
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<input
type="hidden"
id="pointing_edit_note_id"
name="pointing_edit_note[id]"
/>
{#
<input
type="hidden"
name="pointing_edit_note[_token]"
value="{{ csrf_token('edit_classroom') }}"
/>
#}
<div class="row mb-4">
<label
for="horizontal-description-input"
class="col-sm-3 col-form-label"
>
{{ form_label(edit_poiting_note_form.description) }}
</label>
<div class="col-sm-9">
{{ form_widget(edit_poiting_note_form.description) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{
form_errors(edit_poiting_note_form.description)
}}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(edit_poiting_note_form.description) }}</small>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary waves-effect"
data-bs-dismiss="modal"
>
{% trans %} Annuler {% endtrans %}
</button>
<button type="submit" class="btn btn-primary waves-effect waves-light">
{% trans %} Modifier {% endtrans %}
</button>
</div>
</div>
{{ form_end(edit_poiting_note_form) }}
</div>
</div>