2023-10-09 00:03:03 +02:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
2023-10-14 18:26:21 +02:00
|
|
|
{% block title %}Edit podcast {{ podcast.name }}{% endblock %}
|
2023-10-09 00:03:03 +02:00
|
|
|
|
|
|
|
{% block body %}
|
2023-10-14 18:26:21 +02:00
|
|
|
<h1>Edit podcast {{ podcast.name }}</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:21 +02:00
|
|
|
<a href="{{ path('app_podcast_index') }}">Go 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 %}
|