{% extends "admin/base.html.twig" %} {% trans_default_domain 'admin' %} {% block title %}{{ "Erreurs 404"|trans }}{% endblock %} {% block pageTitle %}{{ "Erreurs 404"|trans }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body %} {% set pages = [ { "title": 'Front'|trans, "type": 'front', "category": 'url', "count": all['front']['url']|length }, { "title": 'Front ressources'|trans, "type": 'front', "category": 'resource', "count": all['front']['resource']|length }, { "title": 'Admin'|trans, "type": 'admin', "category": 'url', "count": all['admin']['url']|length }, { "title": 'Admin ressources'|trans, "type": 'admin', "category": 'resource', "count": all['admin']['resource']|length } ] %}
{% for entity in pagination %} {% endfor %}
{{ "Jour"|trans }} {{ "URL"|trans }} {{ "Actions"|trans }}
{{ entity.createdAt|localizeddate('none', 'none', app.request.locale, null, "cccc dd MMMM Y HH:mm") }} {{ entity.url }} {{ render_esi(controller('App\\Controller\\Admin\\Seo\\NotFoundUrlController::newRedirection', {"website": websiteId(), 'notfoundUrl': entity.id} )) }} {% if routeExist('admin_notfoundurl_delete') and 'delete'|moduleActive(allModules) %} {% endif %}
{% include 'admin/core/include/pagination.html.twig' %}
{% endblock %}