{% extends 'base.html.twig' %} {% block title %}Les privilèges{% endblock %} {% block body %} {% include 'utils/file.ariane.html.twig' %} Privilèges - EELO {% if secure.havePermission(constant('_ADD_SERV_GEST_HABI', app_const)) %} Nouveau {% endif %} {{ form_start(form) }} {{ form_widget(form.searchValue) }} {{ form_end(form) }} {% if result.elements|length <= 0 %} Aucun privilege trouvé {% else %} Libelle {% for obj in result.elements %} {{ obj.libelle }} {% if secure.havePermission(constant('_UPDATE_SERV_GEST_HABI', app_const)) %} Modifier {% endif %} {% if secure.havePermission(constant('_REMOVE_SERV_GEST_HABI', app_const)) %} Supprimer {% endif %} {% endfor %} {% endif %} {% include 'utils/pagination.html.twig' with {'url': '/privilege'} %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}