Newer
Older
activity-manager / templates / _includes / html / form / project / edit.html.twig
@Kilian Riou Kilian Riou on 11 Oct 2021 441 bytes Project edit
{{ form_start(form, {attr: {class: 'ajax-form'}}) }}
<div>
	{{ form_label(form.name, 'Nom', {label_attr: {class: 'input-text-label'}}) }}
	{{ form_widget(form.name, {attr: {class: 'w-100'}}) }}
</div>
<div>
	{{ form_widget(form.active) }}
	{{ form_label(form.active, 'Actif') }}
</div>
{{ form_widget(form.submit, {attr: {class: 'w-100'}, label: 'Enregistrer'}) }}
<p class="form-error"></p>
<p class="form-message"></p>
{{ form_end(form) }}