{% extends ('base.html.twig') %} {% set array_title = {'delais_actions':'délai actions'} %} {% block title %} COSAP - {{ array_title[current_menu] }} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} {{ parent() }}
{% if action == "add" or action == "edit" %}
{% if action == "add" %} Nouveaux {% elseif action == "edit" %} Modifier {% endif %} délais

{{ include('Actions/Delais/action.html.twig') }}
{% endif %}
Recherche avancée

{% trans %}Liste des délais{% endtrans %} {{ DelaisActions.getTotalItemCount }}
{% if app.user and is_granted('ROLE_AJOUTER_DELAIS_ACTIONS') %} {% trans %}nouvel enregistrement{% endtrans %} {% endif %}
{% if not DelaisActions|length %} {% else %}
{% for delais in DelaisActions %} {% endfor %}
délai Actions
{{ delais.getFullDelais() }} {% if app.user and is_granted('ROLE_MODIFIER_DELAIS_ACTIONS') %} {% endif %} {% if app.user and is_granted('ROLE_SUPPRIMER_DELAIS_ACTIONS') %} {% endif %}
{% endif %}
{% endblock %}{% block javascripts %} {{ parent() }} {% include('Actions/Delais/ajax/delete.html.twig') %}{% endblock %}