{% extends 'admin/adminBase.html.twig' %} {% block title %}ADMINISTRATION - Liste des services{% endblock %} {% block titre_page %}Liste des services{% endblock %} {% block sous_titre_page %}Retrouvez ici la liste des services{% endblock %} {% block titre_icone %} {{ getMenuIcon('ADMIN_SERVICES') }}{% endblock %} {% block droit_ajout %} {% if autorise('SERVICE_CREATE') %} {% endif %} {% endblock %} {% block body %} {% for service in services %} {% else %} {% endfor %}
Id Nom Nb colonne Ordinateur Nb colonne Tablette Nb colonne Mobile Actions
{{ service.id }} {{ service.nom }} {{ service.nbColComputer }} {{ service.nbColTab }} {{ service.nbColMobile }} {% if autorise('SERVICE_UPDATE') %} {% endif %} {% if autorise('SERVICE_DELETE') %} {{ include('admin/service/_delete_form.html.twig') }} {% endif %}
Aucun enregistrement trouvé
{% endblock %}