LSBC/templates/podcast/edit.html.twig

14 lines
318 B
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
{% block title %}Edit Podcast{% endblock %}
{% block body %}
2023-10-14 18:26:09 +02:00
<h1>Edit Podcast</h1>
2023-10-14 18:26:09 +02:00
{{ include('podcast/_form.html.twig', {'button_label': 'Update'}) }}
2023-10-14 18:26:09 +02:00
<a href="{{ path('app_podcast_index') }}">back to list</a>
2023-10-14 18:26:09 +02:00
{{ include('podcast/_delete_form.html.twig') }}
{% endblock %}