{% extends 'admin/base.html.twig' %} {% block content %}

{{ 'admin.document.index.title'|trans }}

{% if documents is not empty %}
{% for document in documents %} {% endfor %}
{{ 'form.document.label.title'|trans }} {{ 'form.document.label.user'|trans }} {{ 'form.document.label.status'|trans }} {{ 'common.action.title'|trans }}
{{ document.title }} {% if document.userConcerned is not null %}{{document.userConcerned.firstName }} {{ document.userConcerned.lastName }} {% endif %} {{ ('common.status.' ~ document.status)|trans }} {% if document.status == 'enabled' %} {% else %} {% endif %}
{{ knp_pagination_render(documents) }}
{% else %}

{{ 'admin.document.index.empty_message'|trans }}

{% endif %}
{% endblock %} {% block view_js %} {% endblock %}