{% extends "BASE.html" %} {% load static %} {% block 'titre_page' %} Gestion des employés - Mon profil {% endblock %} {% block 'contenu' %}
Les informations de mon profil
{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if not expiration_contrat %}
Important : Les informations sur votre contrat n'ont pas été renseignées, veuillez contacter les ressources humaines.
{% elif contrat_nb_jours_restant %}
Important : Votre contrat de travail expire dans {{ contrat_nb_jours_restant }} jours, veuillez contacter les ressources humaines.
{% endif %}

{% csrf_token %}
{% if employe.photo %} Fichier actuel : {{employe.photo}} {% endif %}

{% for contrat in contrats %}
Voir le contrat
{% empty %}

Aucun contrat trouvé.

{% endfor %}

    {% for projet in projets %}
  • {{ projet.nom_projet }} ({{ projet.pourcentage_temps_affectation }}%) du {{ projet.date_debut|date:"d/m/Y" }} au {{ projet.date_fin|date:"d/m/Y" }} en tant que {{ projet.role }}.
  • {% empty %}
  • Vous n'êtes affecté à aucun projet.
  • {% endfor %}

{% csrf_token %}
{% if employe.CV %} Fichier actuel : {{employe.CV}} {% endif %}
{% if employe.diplome %} Fichier actuel : {{employe.diplome}} {% endif %}
{% if employe.casier_judiciaire %} Fichier actuel : {{employe.casier_judiciaire}} {% endif %}
{% if employe.rib %} Fichier actuel : {{employe.rib}} {% endif %}

{% endblock %} {% block 'modal' %} {% include "gestion_employe/parts/modificationMotPasse.html" %} {% include "gestion_employe/parts/modalAjoutFormation.html" %} {% endblock %} {% block 'js' %} {% endblock %}