{% extends 'SEAdminBundle:layout:block.html.twig' %} {% block block_title %} Liste des fichiers Nombre : {{ files|length }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block block_content %} {% if files|length > 0 %}
{% for file in files %} {% endfor %}
Titre Url Date
{{ file.title }} {{ app.request.getSchemeAndHttpHost() }}{{ asset(file.urlfile) }} {{ file.dateadd|date('d/m/Y h:i') }}
{% else %}
Infos ! Vous avez aucun fichier pour le moment, pour commencer a en ajouter, cliquez ici.
{% endif %} {% endblock %}