{% extends "admin/base.html.twig" %} {% block content %}

Gestion des bases

{% if is_granted('create', 'ato') %} {% endif %}
{% if is_granted('list', 'ato') %}
{% include "form/searchBar.html.twig" %}
{% endif %}
{{ knp_pagination_render(atos) }}

Nombre de bases trouvées: {{ atos.getTotalItemCount }}


{% for ato in atos %} {% else %} {% endfor %}
Code Nom Email Téléphone Actions
{{ ato.code }} {{ ato.name }} {% if ato.contactEmail %} {{ato.contactEmail}} {% else %} Non Défini {% endif %} {% if ato.contactPhone %} {{ato.contactPhone}} {% else %} Non Défini {% endif %} {% if is_granted('view', 'ato') %} {% endif %} {% if is_granted('view', 'ato') and is_granted('edit', 'ato') %} - {% endif %} {% if is_granted('edit', 'ato') %} {% endif %} {% if (is_granted('edit', 'ato') or is_granted('view', 'ato')) and is_granted('delete', 'ato') %} - {% endif %} {% if is_granted('delete', 'ato') %} {% include "ato/_delete_form.html.twig" %} {% endif %}
Aucune base trouvée
{% endblock %}