14 lines
326 B
Twig
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 %}
|