{% extends 'base.html.twig' %}
{% block title %} {% trans %}COSAP - Fonctionnalités CRM{% endtrans %} {% endblock %}
{% block body %}
{{ parent() }}
{% if action == "edit" or action == "add" %}
{% if action == "add" %} {% trans %}Nouvel{% endtrans %} {% else %} {% trans %}Modifier{% endtrans %} {% endif %} {% trans %}Enregistrement{% endtrans %}
{% trans %}Liste des Fonctionnalités CRM{% endtrans %} {{ fonctionnalites.getTotalItemCount }}
{% for functionality in fonctionnalites %}
{% trans %}Fonctionnalité{% endtrans %}
{% if app.user and (is_granted('ROLE_MODIFIER_FUNCTIONALITY_CRM') or is_granted('ROLE_SUPPRIMER_FUNCTIONALITY_CRM')) %}
{% trans %}Actions{% endtrans %}
{% endif %}
{% endfor %}
{{ functionality.name }}
{% if app.user and (is_granted('ROLE_MODIFIER_FUNCTIONALITY_CRM') or is_granted('ROLE_SUPPRIMER_FUNCTIONALITY_CRM')) %}
{% endif %}