{% extends 'base.html.twig' %} {% block title %}Episode index{% endblock %} {% block body %}

{% if podcast is defined %} Episodes for {{ podcast.name }} {% else %} All your episodes {% endif %}

{% for episode in episodes %} {% else %} {% endfor %}
ID Title Publication date Actions
{{ episode.id }} {{ episode.title }} {{ episode.publicationDate ? episode.publicationDate|date('Y-m-d H:i:s') : '' }} Show Edit
No episodes found.
{% if podcast is defined %} Back to podcast {% else %} Create new episode

To manage episodes of a specific podcast, open the podcast page and use the “Manage podcasts” link.

{% endif %} {% endblock %}