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

{{ project.title }}

Client: {{ project.client.user.get_full_name }} {{ project.get_status_display }}

Retour aux projets {% if user_type == 'DRH' %} {% endif %}

Informations du projet

{{ project.description|safe }}
{{ project.completion_percentage }}%

{{ project.completion_percentage }}%

{{ project.start_date|date:"d/m/Y"|default:"Non définie" }}

{{ project.end_date|date:"d/m/Y"|default:"Non définie" }}

{% if project.budget %}

{{ project.budget|floatformat:0 }} FCFA

{% endif %}
{% if project.created_by.image %} Avatar {% else %}
{{ project.created_by.user.first_name|first|default:project.created_by.user.username|first|upper }}
{% endif %}

{{ project.created_by.user.get_full_name|default:project.created_by.user.username }}
{{ project.created_at|date:"d/m/Y à H:i" }}

{% if project.assigned_technicians.count > 0 %}
{% for tech in project.assigned_technicians.all %}
{% if tech.image %} Avatar {% else %}
{{ tech.user.first_name|first|default:tech.user.username|first|upper }}
{% endif %}

{{ tech.user.get_full_name|default:tech.user.username }} {{ tech.get_type_display }}

{% endfor %}
{% endif %}

Activités du projet ({{ activities.count }})

{% if activities %}
{% for activity in activities %}

{{ activity.title }} {% if activity.activity_type == 'FACTURE' %} {% elif activity.activity_type == 'NOTE' %} {% elif activity.activity_type == 'DEVIS' %} {% else %} {% endif %} {{ activity.get_activity_type_display }} {% if activity.is_completed %} Terminé {% else %} En cours {% endif %}
{{ activity.description|striptags|truncatewords:15 }}
{{ activity.created_by.user.get_full_name|default:activity.created_by.user.username }}  •  {{ activity.created_at|date:"d/m/Y à H:i" }} {% if activity.due_date %}  •  Échéance: {{ activity.due_date|date:"d/m/Y" }} {% endif %}

{% if activity.assigned_to %}
{% if activity.assigned_to.image %} Avatar {% else %}
{{ activity.assigned_to.user.first_name|first|default:activity.assigned_to.user.username|first|upper }}
{% endif %}

Assigné à: {{ activity.assigned_to.user.get_full_name|default:activity.assigned_to.user.username }}

{% endif %}
{% if activity.images.count > 0 %} {{ activity.images.count }} image(s) {% endif %} {% if activity.videos.count > 0 %} {{ activity.videos.count }} vidéo(s) {% endif %} {% if activity.files.count > 0 %} {{ activity.files.count }} fichier(s) {% endif %}
{% endfor %}
{% else %}

Aucune activité

Ce projet n'a pas encore d'activités. {% if user_type == 'DRH' %}Commencez par en créer une.{% endif %}

{% if user_type == 'DRH' %} {% endif %}
{% endif %}
{% endblock %}