HegreLand/templates/employee/edit.html.twig

14 lines
327 B
Twig
Raw Normal View History

2024-11-21 17:55:00 +01:00
{% extends 'base.html.twig' %}
{% block title %}Edit Employee{% endblock %}
{% block body %}
<h1>Edit Employee</h1>
{{ include('employee/_form.html.twig', {'button_label': 'Update'}) }}
2024-11-28 14:30:11 +01:00
<a href="{{ path('employee_index') }}">back to list</a>
2024-11-21 17:55:00 +01:00
{{ include('employee/_delete_form.html.twig') }}
{% endblock %}