{% extends "admin/base.html.twig" %} {% trans_default_domain 'admin' %} {% import 'core/src-macro.html.twig' as resources %} {% set transDomain = interface.name is defined and interface.name ? 'entity_' ~ interface.name : NULL %} {% set title = 'plural'|trans([], transDomain) and 'plural'|trans([], transDomain) != 'plural' ? 'plural'|trans([], transDomain) : 'Index'|trans ~ " " ~ interface.name %} {% block title %}{{ title }}{% endblock %} {% block pageTitle %}{{ title }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body %}
{% for entity in pagination %} {% endfor %}
{{ "Formulaire"|trans }} {{ "Date"|trans }} {{ "Action"|trans }}
{% if entity.form %} {{ entity.form.adminName }} {% elseif entity.stepForm %} {{ entity.stepForm.adminName }} {% endif %} {{ entity.createdAt|localizeddate('none', 'none', app.request.locale, null, "cccc d MMMM Y 'à' HH:mm"|trans) }} {% if routeExist('admin_' ~ interface['name'] ~ '_delete') and 'delete'|moduleActive(allModules) %} {% endif %}
{% endblock %}