{# agents/edit.html.twig #} {% extends 'base.html.twig' %} {% block page %}

{{ titre }}

{% if can_manage_agent %} {% include 'agents/agent_table_edit.html.twig' %} {% else %} {% include 'agents/agent_table.html.twig' %} {% endif %}
{% if can_manage_agent %} {% include 'agents/rights_edit.html.twig' %} {% else %} {% include 'agents/rights.html.twig' %} {% endif %} {% if conges_enabled %} {% if conges_mode == 'heures' %} {% include 'agents/holidays_hours.html.twig' %} {% else %} {% include 'agents/holidays.html.twig' %} {% endif %} {% endif %}

Ajoutez, supprimez des statuts. Modifiez leur catégorie. Modifiez l'ordre des statuts dans les menus déroulant.

    {% if statuts is iterable %} {% for elem in statuts %}
  • {{ elem.valeur | raw }} {% if elem.valeur not in statuts_utilises %} {% endif %}
  • {% endfor %} {% endif %}
{% endblock %}