{% extends 'admin/adminBase.html.twig' %} {% block title %}ADMINISTRATION - Liste des catégories de contacts{% endblock %} {% block titre_page %}Liste des catégories de contacts{% endblock %} {% block sous_titre_page %}Retrouvez ici la liste des catégories de contacts{% endblock %} {% block titre_icone %} {{ getMenuIcon('ADMIN_CONTACT_CATEGORY') }}{% endblock %} {% block droit_ajout %} {% if autorise('CONTACT_CATEGORY_CREATE') %} {% endif %} {% endblock %} {% block body %} {% for contact_category in contact_categories %} {% else %} {% endfor %}
Id Code Nom Remarque Actions
{{ contact_category.id }} {{ contact_category.code }} {{ contact_category.nom }} {{ contact_category.remarque }} {% if autorise('CONTACT_CATEGORY_UPDATE') %} {% endif %} {% if autorise('CONTACT_CATEGORY_DELETE') %} {{ include('admin/contact_category/_delete_form.html.twig') }} {% endif %}
Aucun enregistrement trouvé
{% endblock %}