{% extends 'admin/adminBase.html.twig' %} {% block title %}ADMINISTRATION - Liste des liens de réseaux sociaux{% endblock %} {% block titre_page %}Liste des liens de réseaux sociaux{% endblock %} {% block sous_titre_page %}Retrouvez ici la liste des liens de réseaux sociaux{% endblock %} {% block titre_icone %} {{ getMenuIcon('ADMIN_SOCIAL_LINKS') }}{% endblock %} {% block droit_ajout %} {% if autorise('SOCIAL_LINK_CREATE') %} {% endif %} {% endblock %} {% block body %} {% for social_link in social_links %} {% else %} {% endfor %}
Id Nom Icone URL Actions
{{ social_link.id }} {{ social_link.nom }} {% include 'components/icon.html.twig' with { 'icon': social_link.icon, css: '', style: 'font-size: 28px' } %} {{ social_link.url }} {% if autorise('SOCIAL_LINK_UPDATE') %} {% endif %} {% if autorise('SOCIAL_LINK_DELETE') %} {{ include('admin/social_link/_delete_form.html.twig') }} {% endif %}
Aucun enregistrement trouvé
{% endblock %}