{% extends 'backoffice/base.html' %} {% load static %} {% block title %}{{ page_title }} - ECOLUX Dashboard{% endblock %} {% block extra_css %} {% endblock %} // Fonctions pour le modal de création de projet {% 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 }} {% if project.budget %}  |  Budget: {{ project.budget|floatformat:0 }} FCFA {% endif %}
{% if project.budget %} Dépensé: {{ project.total_spent_from_activities|floatformat:0 }} FCFA  |  Restant: {{ project.budget_remaining_from_activities|floatformat:0 }} FCFA  |  Utilisé: {{ project.budget_usage_percentage }}%
{% 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 %}

Activités ({{ project.activities.count }}) {% if user_type == 'DRH' or user_type == 'TECHNICIEN' or user_type == 'CLIENT' %} {% endif %} {% if user_type == 'DRH' or user_type == 'TECHNICIEN' %} {% endif %} {% if user_type == 'DRH' or user_type == 'ADMIN' %} {% 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 %}
{% endfor %} {% else %}

Aucun projet trouvé

{% if current_status or search_query %} Aucun projet ne correspond à vos critères de recherche.
Voir tous les projets {% else %} Commencez par créer votre premier projet. {% if user_type == 'DRH' or user_type == 'TECHNICIEN' %}
{% endif %} {% endif %}

{% endif %}
{% if page_obj.has_other_pages %} {% endif %}
{% if user_type == 'DRH' or user_type == 'TECHNICIEN' %} {% endif %} {% if user_type == 'DRH' or user_type == 'TECHNICIEN' or user_type == 'CLIENT' %} {% endif %} {% csrf_token %} {% endblock %}