Data e ora
{{ app.data_ora|date:"d/m/Y \a\l\l\e H:i" }}
{% if app.is_passato %}
Passato
{% endif %}
{% if app.luogo %}
{% endif %}
{% if app.note %}
Note
{{ app.note }}
{% endif %}
{% if app.conversazione %}
Conversazione collegata
{{ app.conversazione.titolo }}
{% endif %}
{% if app.partecipanti.all %}
Partecipanti
{% for p in app.partecipanti.all %}
{{ p.username|slice:":2"|upper }}
{{ p.get_full_name|default:p.username }}
{% endfor %}
{% endif %}
Creato da {{ app.creato_da.get_full_name|default:app.creato_da.username }} il {{ app.data_creazione|date:"d/m/Y H:i" }}