{% extends 'admin/adminBase.html.twig' %} {% block title %}ADMINISTRATION - Liste des documents{% endblock %} {% block titre_page %}Liste des documents{% endblock %} {% block sous_titre_page %}Retrouvez ici la liste des documents{% endblock %} {% block titre_icone %} {{ getMenuIcon('ADMIN_DOCUMENTS') }}{% endblock %} {% block droit_ajout %} {% if autorise('DOCUMENTS_CREATE') %} {% endif %} {% endblock %} {% block body %} {% for document in documents %} {% else %} {% endfor %}
Id Date de création Dernière mise à jour Date d'archivage Nom Actions
{{ document.id }} {{ document.dateCreation ? document.dateCreation|date('Y-m-d H:i:s') : '' }} {{ document.dateUpdate ? document.dateUpdate|date('Y-m-d H:i:s') : '' }} {{ document.dateArchive ? document.dateArchive|date('Y-m-d H:i:s') : '' }} {{ document.nom }}.{{ document.extension }} {% if autorise('DOCUMENTS_DOWNLOAD') %} {% endif %} {% if autorise('DOCUMENTS_UPDATE') %} {% endif %} {% if autorise('DOCUMENTS_DELETE') %} {{ include('admin/document/_delete_form.html.twig') }} {% endif %}
Aucun enregistrement trouvé
{% endblock %}