{% extends 'admin/adminBase.html.twig' %} {% block title %}ADMINISTRATION - Liste des pages CMS{% endblock %} {% block titre_page %}Liste des pages de contenu{% endblock %} {% block sous_titre_page %}Retrouvez ici la liste des pages de contenu{% endblock %} {% block titre_icone %} {{ getMenuIcon('ADMIN_PAGES') }}{% endblock %} {% block droit_ajout %} {% if autorise('PAGE_CREATE') %} {% endif %} {% endblock %} {% block body %} {% for page in pages %} {% else %} {% endfor %}
Id Titre Active ? actions
{{ page.id }} {{ page.title }} {{ page.isActive ? 'Oui' : 'Non' }} {% if autorise('PAGE_UPDATE') %} {% endif %} {% if autorise('PAGE_CONTENT_UPDATE') %} {% endif %} {% if autorise('PAGE_DELETE') %} {{ include('admin/page/_delete_form.html.twig') }} {% endif %}
Aucun enregistrement trouvé
{% endblock %}