{% extends 'backoffice/base.html' %} {% load static %} {% block title %}Activités - {{ project.title }} - ECOLUX Dashboard{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ project.title }}

{{ activities|length }} activité{{ activities|length|pluralize }} {{ project.created_by.user.get_full_name|default:project.created_by.user.username }}
Retour {% if user_type == 'DRH' or user_type == 'TECHNICIEN' or project.created_by.user == request.user %} {% endif %}
{% if activity_groups %} {% for group in activity_groups %} {% with activity=group.parent %}
{% if activity.activity_type == 'FACTURE' %} {% elif activity.activity_type == 'NOTE' %} {% elif activity.activity_type == 'DEVIS' %} {% elif activity.activity_type == 'JUSTIFICATIF' %} {% elif activity.activity_type == 'DESIGN' %} {% elif activity.activity_type == 'CONSTRUCTION' %} {% else %} {% endif %}

{{ activity.title }} {{ activity.get_activity_type_display }} {% if activity.priority == 'HIGH' %} {% elif activity.priority == 'URGENT' %} 🚨 {% endif %}

{% if activity.is_completed %} Terminé {% elif activity.is_overdue %} Retard {% else %} En cours {% endif %} {% if activity.due_date %} {{ activity.due_date|date:"d/m/Y" }} {% endif %} {% if activity.assigned_users.exists %} {{ activity.assigned_users.count }} assigné{{ activity.assigned_users.count|pluralize }} {% elif activity.assigned_to %} {{ activity.assigned_to.user.get_full_name|default:activity.assigned_to.user.username|truncatechars:15 }} {% endif %}
{% if group.children %} {% endif %} {% if user_type == 'DRH' or activity.created_by.user == request.user or request.user.is_superuser %} {% endif %} {% if user_type == 'DRH' or activity.created_by.user == request.user %} {% endif %} {% if user_type == 'DRH' or activity.created_by.user == request.user or request.user.is_superuser %} {% endif %}
{% if activity.description %}
Description
{{ activity.description|safe }}
{% endif %}

Créé par:

{{ activity.created_by.user.get_full_name|default:activity.created_by.user.username }}

Création:

{{ activity.created_at|date:"d/m/Y H:i" }}

{% if activity.assigned_users.exists %}

Assignés:

{% for assigned_user in activity.assigned_users.all %} {{ assigned_user.user.get_full_name|default:assigned_user.user.username }} {% endfor %}
{% endif %} {% if activity.completed_at %}

Terminé:

{{ activity.completed_at|date:"d/m/Y H:i" }}

{% endif %}
{% with activity.images.all as images %} {% with activity.videos.all as videos %} {% with activity.files.all as files %} {% if images or videos or files %}
Fichiers ({{ images.count|add:videos.count|add:files.count }})
{% if images %}

Images ({{ images.count }})

{% for image in images|slice:":6" %} {% endfor %} {% if images.count > 6 %}

+{{ images.count|add:"-6" }}

{% endif %}
{% endif %} {% if files %}

Documents ({{ files.count }})

{% for file in files %}
{{ file.title }}
{% endfor %}
{% endif %}
{% endif %} {% endwith %} {% endwith %} {% endwith %}
{% if group.children %} {% endif %}
{% endwith %} {% endfor %} {% else %}

Aucune activité

Ce projet n'a pas encore d'activités.

{% if user_type == 'DRH' or user_type == 'TECHNICIEN' or project.created_by.user == request.user %} {% endif %}
{% endif %}
{% endblock %}