{% extends 'base.html.twig' %} {% block title %}Les manuels{% endblock %} {% block body %} {% include 'utils/file.ariane.html.twig' %} Manuels - EELO {% if secure.havePermission(constant('_ADD_SERV_GEST_FILE', app_const)) %} Nouveau {% endif %} {{ form_start(form) }} {{ form_widget(form.searchValue) }} {{ form_end(form) }} {% if result.elements|length <= 0 %} Aucun manuel trouvé {% else %} Nom {% for obj in result.elements %} {{ obj.filename }} {% if secure.havePermission(constant('_REMOVE_SERV_GEST_FILE', app_const)) %} Supprimer {% endif %} {% endfor %} {% endif %} {% include 'utils/pagination.html.twig' with {'url': '/manuel'} %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}