12 lines
264 B
Twig
12 lines
264 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
<h1>Edit Map</h1>
|
|
|
|
{{ include('map/_form.html.twig', {'button_label': 'Update'}) }}
|
|
|
|
<a href="{{ path('bo_map_index') }}">back to list</a>
|
|
|
|
{{ include('map/_delete_form.html.twig') }}
|
|
{% endblock %}
|