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