{% extends "diario/base.html" %} {% load custom_filters %} {% block title %}{{ conv.titolo }}{% endblock %} {% block content %}
{{ conv.titolo }}
{% if can_edit %} Modifica Elimina {% endif %}
{{ conv.registrato_da.username|slice:":2"|upper }}
{{ conv.registrato_da.get_full_name|default:conv.registrato_da.username }}
{{ conv.data|date:"d/m/Y \a\l\l\e H:i" }}
{{ conv.contenuto }}
{% if conv.tags.all %}
{% for tag in conv.tags.all %} {{ tag.nome }} {% endfor %}
{% endif %} {% if conv.partecipanti.all %}
Partecipanti
{% for p in conv.partecipanti.all %}
{{ p.username|slice:":2"|upper }} {{ p.get_full_name|default:p.username }}
{% endfor %}
{% endif %}

Appuntamenti ({{ appuntamenti|length }})

Crea riunione
{% for app in appuntamenti %}
{{ app.titolo }} {{ app.data_ora|date:"d/m/Y H:i" }} {% if app.luogo %} · {{ app.luogo }}{% endif %}
{% empty %}

Nessun appuntamento collegato.

{% endfor %}

Allegati ({{ documenti|length }})

Allega PDF
{% for doc in documenti %}
{{ doc.titolo }} {{ doc.caricato_da.get_full_name|default:doc.caricato_da.username }} · {{ doc.data_caricamento|date:"d/m/Y" }}
{% empty %}

Nessun documento allegato.

{% endfor %}

Commenti ({{ commenti|length }})

{% csrf_token %} {{ comment_form.testo }}
{% for c in commenti %}
{{ c.autore.username|slice:":2"|upper }} {{ c.autore.get_full_name|default:c.autore.username }}
{{ c.data|date:"d/m/Y H:i" }} {% if user == c.autore or user.is_superuser %} {% endif %}

{{ c.testo|render_mentions }}

{% empty %}

Nessun commento ancora. Sii il primo!

{% endfor %}
{% endblock %}