{% extends "diario/base.html" %} {% load custom_filters %} {% block title %}Obiettivi{% endblock %} {% block content %}

Obiettivi del progetto

Nuovo obiettivo
Tutti Collettivi Individuali I miei
{% for obj in obiettivi %}
{{ obj.get_stato_display }} {{ obj.get_tipo_display }}
{% if user == obj.creato_da or user.is_superuser %} {% endif %}
{{ obj.titolo }} {% if obj.descrizione %}

{{ obj.descrizione|truncatewords:18 }}

{% endif %} {% if obj.assegnato_a.all %}
{% for p in obj.assegnato_a.all %} {{ p.username|slice:":2"|upper }} {% endfor %} {% for p in obj.assegnato_a.all %}{{ p.get_full_name|default:p.username }}{% if not forloop.last %}, {% endif %}{% endfor %}
{% endif %}
{{ obj.avanzamento }}%
salvataggio… {% if obj.data_scadenza %}
{{ obj.data_scadenza|date:"d/m/Y" }} {% with days=obj.giorni_rimanenti %} {% if days is not None %} {% if days < 0 %} Scaduto {% elif days <= 3 %} {{ days }}gg {% elif days <= 7 %} {{ days }}gg {% else %} {{ days }}gg {% endif %} {% endif %} {% endwith %}
{% endif %}
{% empty %}

Nessun obiettivo trovato per questo filtro.

{% endfor %}
{% endblock %}