{% extends "diario/base.html" %} {% block title %}{{ app.titolo }}{% endblock %} {% block content %}
{{ app.titolo }}
{% if can_edit %} Modifica Elimina {% endif %}
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 %}
Luogo
{{ 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" }}
{% endblock %}