8 lines
509 B
Twig
8 lines
509 B
Twig
<form method="post" action="{{ action }}" class="admin-table__form"{% if confirm is defined and confirm %} onsubmit="return confirm('{{ confirm|e('js') }}')"{% endif %}>
|
|
{% include '@Kernel/partials/_csrf_fields.twig' %}
|
|
<button type="submit" class="btn btn--sm btn--danger"
|
|
{% if disabled is defined and disabled %}disabled{% if disabled_title is defined and disabled_title %} title="{{ disabled_title }}"{% endif %}{% endif %}>
|
|
{{ label|default('Supprimer') }}
|
|
</button>
|
|
</form>
|