{% extends "default/datatable.html.twig" %} {% block custom_css %} {{parent()}} {% endblock %} {% block ajout %} {% if app.user.hasright(right_add) %} {{ 'Table.Add' | trans }} {% endif %} {% endblock %} {% block datatable %} {% for d in datas %} {% endfor %}
{{'Table.SF.Assign' | trans}} {{'Table.SF.Name' | trans}} {{'Table.SF.Statut' | trans}} {{'Table.SF.Creation' | trans}} {{'Table.Action' | trans}}
{{ d.id }} {{ d.storageFileList.className }} {{ d.name }} {% if d.statut == 1 %} {{ 'Form.Active' | trans}} {% elseif d.statut == 2 %} {{ 'Form.Maintenance' | trans}} {% elseif d.statut == 3 %} {{ 'Form.Archived' | trans}} {% elseif d.statut == 4 %} {{ 'Form.NoActive' | trans}} {% endif %} {{ d.creadate | format_datetime('medium', 'short', locale=app.request.getLocale()) }} {% if app.user.hasright(right_edit) %} {{'Table.SF.Retention' | trans}} {% endif %}
{% include 'retentionSF/modal.html.twig' %} {% endblock %} {% block initialisation %} {{parent()}} {% endblock %} {% block custom_js %} {{parent()}} {% endblock %}