{% extends 'backoffice/base.html' %} {% load static %} {% block title %}{{ page_title }} - ECOLUX Dashboard{% endblock %} {% block content %}

{{ page_title }}

Retour au tableau de bord {% if user_type == 'DRH' or user_type == 'TECHNICIEN' %} {% endif %}
{% if current_status or search_query %} {% endif %}

Liste des projets

{% if page_obj %} {% for project in page_obj %}

{{ project.title }} {% if project.status == 'PLANNING' %} {{ project.get_status_display }} {% elif project.status == 'IN_PROGRESS' %} {{ project.get_status_display }} {% elif project.status == 'COMPLETED' %} {{ project.get_status_display }} {% elif project.status == 'PAUSED' %} {{ project.get_status_display }} {% else %} {{ project.get_status_display }} {% endif %}
{{ project.description|striptags|truncatewords:20 }}
Client: {{ project.client.user.get_full_name }}  |  Activités: {{ project.activities_count }}  |  Progression: {{ project.completion_percentage }}% {% if project.budget %}  |  Budget: {{ project.budget|floatformat:0 }} FCFA {% endif %}
Créé le {{ project.created_at|date:"d/m/Y à H:i" }} {% if project.start_date %} - Début: {{ project.start_date|date:"d/m/Y" }} {% endif %} {% if project.end_date %} - Fin prévue: {{ project.end_date|date:"d/m/Y" }} {% endif %}

{{ project.completion_percentage }}%
{% if user_type == 'DRH' or user_type == 'TECHNICIEN' %}
{% if user_type == 'DRH' %} {% endif %}
{% endif %} {% if project.assigned_technicians.count > 0 %}
Techniciens: {% for tech in project.assigned_technicians.all %} {{ tech.user.get_full_name|default:tech.user.username }} {% endfor %}
{% endif %}
{% if not forloop.last %}
{% endif %} {% endfor %} {% else %}

Aucun projet trouvé.

{% if current_status or search_query %}

Effacer les filtres pour voir tous les projets.

{% endif %}
{% endif %}
{% if page_obj.has_other_pages %} {% endif %}
{% endblock %}