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

5 lines
332 B
Twig

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