{% extends '@App/app.html.twig' %} {% block title %}Types d’entretiens{% endblock %} {% block page_header %}{% endblock %} {% block content %} {% set active_count = types|filter(t => t.active)|length %} {% set legal_count = types|filter(t => t.isIsLegalFollowUp)|length %}

Types d’entretiens

Configurez les workflows, modules et règles d’affichage applicables à chaque type d’entretien.

Nouveau type
Total{{ types|length }}
Actifs{{ active_count }}
Suivi légal{{ legal_count }}
{% for type in types %} {% else %} {% endfor %}
Type Workflow Modules Statut
{{ type.nom }} {{ type.code }} · {{ type.category }} {% if type.description %}{{ type.description }}{% endif %}
{% if type.requiresPreparationEmployee %}Prépa salarié{% endif %} {% if type.requiresPreparationManager %}Prépa manager{% endif %} {% if type.requiresValidationEmployee %}Validation salarié{% endif %} {% if type.requiresValidationManager %}Validation manager{% endif %} {% if type.allowSignature %}Signature{% endif %}
{% if type.allowObjectives %}Objectifs{% endif %} {% if type.allowSkills %}Compétences{% endif %} {% if type.allowTrainingNeeds %}Formation{% endif %} {% if type.allowActionPlan %}Plan action{% endif %} {% if type.isIsLegalFollowUp %}EPP{% endif %}
{{ type.active ? 'Actif' : 'Inactif' }}
Modifier
Aucun type d’entretien.
{% endblock %}