{% extends "diario/base.html" %} {% block title %}Appuntamenti{% endblock %} {% block content %}

Appuntamenti e Riunioni

Nuovo appuntamento
{% if futuri %}

Prossimi

{% for app in futuri %}
{{ app.titolo }}
{{ app.data_ora|date:"d/m/Y H:i" }} {% if app.luogo %} {{ app.luogo }} {% endif %} {% if app.conversazione %} {{ app.conversazione.titolo|truncatewords:5 }} {% endif %} {% if app.partecipanti.count > 0 %} {{ app.partecipanti.count }} {% endif %}
{% endfor %} {% endif %} {% if passati %}

Passati

{% for app in passati %}
{{ app.titolo }}
{{ app.data_ora|date:"d/m/Y H:i" }} {% if app.luogo %} {{ app.luogo }} {% endif %}
{% endfor %} {% endif %} {% if not futuri and not passati %}

Nessun appuntamento registrato.

{% endif %} {% endblock %}