{% extends 'admin/adminBase.html.twig' %} {% block title %}ADMINISTRATION - Liste des logs{% endblock %} {% block titre_page %}Liste des logs{% endblock %} {% block sous_titre_page %}Retrouvez ici la liste des logs{% endblock %} {% block titre_icone %} {{ getMenuIcon('ADMIN_LOGS') }}{% endblock %} {% block droit_ajout %} {% if autorise('LOGS_CREATE') %} {% endif %} {% endblock %} {% block body %} {% for log in logs %} {% else %} {% endfor %}
Id Utilisateur Informations d'accès Titre Contenu DateCreation Actions
{{ log.id }} {{ log.user }} {{ log.ipAddress }} {{ log.titre }} {{ log.contenu }} {{ log.dateCreation ? log.dateCreation|date('Y-m-d H:i:s') : '' }} {% if autorise('LOGS_UPDATE') %} {% endif %} {% if autorise('LOGS_DELETE') %} {{ include('admin/log/_delete_form.html.twig') }} {% endif %}
Aucun enregistrement trouvé
{% endblock %}