add shortcut to create episode on podcast page
This commit is contained in:
parent
0e8d02c2ef
commit
35216ff630
|
@ -69,12 +69,20 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
<p>
|
||||||
<a href="{{ path('app_podcast_index') }}">Go back to list</a>
|
<a href="{{ path('app_podcast_index') }}">Go back to list</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
<a
|
<a
|
||||||
href="{{ path('app_podcast_edit', {'id': podcast.id}) }}"
|
href="{{ path('app_podcast_edit', {'id': podcast.id}) }}"
|
||||||
class="btn btn-primary"
|
class="btn btn-primary"
|
||||||
>Edit</a>
|
>Edit</a>
|
||||||
|
<a
|
||||||
|
href="{{ path('app_episode_new') }}?podcast={{ podcast.id }}"
|
||||||
|
class="btn btn-primary"
|
||||||
|
>Create new episode</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
{{ include('podcast/_delete_form.html.twig') }}
|
{{ include('podcast/_delete_form.html.twig') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue