HegreLand/templates/category/edit.html.twig

14 lines
331 B
Twig
Raw Permalink Normal View History

2024-12-06 11:35:23 +01:00
{% extends 'base.html.twig' %}
{% block title %}Edit Category{% endblock %}
{% block body %}
<h1>Edit Category</h1>
{{ include('category/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_category_index') }}">back to list</a>
{{ include('category/_delete_form.html.twig') }}
{% endblock %}