{% extends 'admin.html.twig' %} {% block title_start %}Podcast{% endblock %} {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('admin_podcast_list') }} {% endblock %} {% block main %}
{% for message in app.flashes('success') %}
{{ message }}
{% endfor %}

Modifier le podcast

Rendre le podcast invisible pour les auditeurs

Rendre le podcast visible pour les auditeurs

Supprimer le podcast

{# {% if is_granted('ROLE_ANIMATEUR') %}
{% endif %} #}

Liste des podcast

{% for podcast in podcasts %} {% endfor %}
Titre Description Emission Date Action
{{ podcast.getName }} {{ podcast.getDescription|raw|u.truncate(50, '...') }} {{ podcast.getEmission.getName }} {{ podcast.getDate|date("d/m/Y") }}
{% if podcast.getEnable %} {% else %} {% endif %}
{{ knp_pagination_render(podcasts) }}
{% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('admin_podcast_list') }} {% endblock %}