2023-10-09 00:03:03 +02:00
|
|
|
{% 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-09 00:03:03 +02:00
|
|
|
|
2023-10-14 18:26:09 +02:00
|
|
|
{{ include('podcast/_form.html.twig', {'button_label': 'Update'}) }}
|
2023-10-09 00:03:03 +02:00
|
|
|
|
2023-10-14 18:26:09 +02:00
|
|
|
<a href="{{ path('app_podcast_index') }}">back to list</a>
|
2023-10-09 00:03:03 +02:00
|
|
|
|
2023-10-14 18:26:09 +02:00
|
|
|
{{ include('podcast/_delete_form.html.twig') }}
|
2023-10-09 00:03:03 +02:00
|
|
|
{% endblock %}
|