{% extends 'base.html.twig' %} {% block title %} {% trans %}COSAP - Durées des actions 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 %}
{{ include('ParametrageCRM/DureeActionCRM/action.html.twig') }}
{% endif %}
{% trans %}Liste des durées des actions CRM{% endtrans %} {{ durees.getTotalItemCount }}
{% if app.user and is_granted('ROLE_AJOUTER_DUREE_ACTION_CRM') %} {% trans %}nouvel enregistrement{% endtrans %} {% endif %}
{% if not durees|length %} {% else %}
{% if app.user and (is_granted('ROLE_MODIFIER_DUREE_ACTION_CRM') or is_granted('ROLE_SUPPRIMER_DUREE_ACTION_CRM')) %} {% endif %} {% for duree in durees %} {% if app.user and (is_granted('ROLE_MODIFIER_DUREE_ACTION_CRM') or is_granted('ROLE_SUPPRIMER_DUREE_ACTION_CRM')) %} {% endif %} {% endfor %}
{% trans %}Durée d'action{% endtrans %}{% trans %}Actions{% endtrans %}
{{ duree.duree }} {{ duree.typeValue }}
{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% include('ParametrageCRM/DureeActionCRM/ajax/delete.html.twig') %} {% endblock %}