14 lines
331 B
Twig
14 lines
331 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}Edit Employee{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Edit Employee</h1>
|
||
|
|
||
|
{{ include('employee/_form.html.twig', {'button_label': 'Update'}) }}
|
||
|
|
||
|
<a href="{{ path('app_employee_index') }}">back to list</a>
|
||
|
|
||
|
{{ include('employee/_delete_form.html.twig') }}
|
||
|
{% endblock %}
|