LSBC/templates/podcast/edit.html.twig
dece bfd24948c1 Make first moves toward dropping EasyAdmin
Anything more than running your own CRUD seems too cumbersome.
2023-10-09 00:03:03 +02:00

14 lines
326 B
Twig

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