Files
genshin-world/templates/_dashboard/region/_delete_form.html.twig
2025-07-15 23:39:10 +02:00

5 lines
288 B
Twig

<form method="post" action="{{ path('bo_region_delete', {'id': region.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ region.id) }}">
<button class="btn">Delete</button>
</form>