HegreLand/templates/ride/edit.html.twig

14 lines
307 B
Twig
Raw Permalink Normal View History

{% extends 'base.html.twig' %}
{% block title %}Edit Ride{% endblock %}
{% block body %}
<h1>Edit Ride</h1>
{{ include('ride/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('ride_index') }}">back to list</a>
{{ include('ride/_delete_form.html.twig') }}
{% endblock %}