{% extends '@App/app.html.twig' %} {% block title %}Mes entretiens{% endblock %} {% block page_header %}{% endblock %} {% block content %} {% set next = next_interview %}

Mes entretiens

Gérez vos échanges, préparez vos points carrière et suivez vos objectifs.

Prochain entretien {% if next %} {{ next.type.nom }} {{ next.scheduledAt|date('d/m/Y') }} {% else %} Aucun entretien planifié {% endif %}
Préparation à compléter
{{ preparations|length }} {% if urgent_preparation_count > 0 %}Urgent{% endif %}
Comptes rendus à valider
{{ reports_to_validate|length }}
Objectifs actifs
{{ active_objectives|length }}
{% for interview in preparations %} {% include '@Interview/interview/_my_interview_card.html.twig' with {interview: interview, context: 'prepare', progress: preparation_progress[interview.id]|default(0)} only %} {% else %} {% include '@Interview/interview/_my_empty.html.twig' with {icon: 'ti-circle-check', title: 'Toutes vos préparations sont à jour', text: 'Vous n’avez aucun entretien à préparer pour le moment.'} only %} {% endfor %}
{% endblock %}