{% extends "base.html" %} {% block title %} Diario: Pagina {{ page }} {% endblock %} {% block content %}
{% if page > 1 %} Pagina precedente {% endif %} {% for entry in entries %}
{% if entry.media_url %} Caricamento immagine fallito {% endif %} {% if entry.text %} "{{ entry.text }}" {% endif %}
{% if entry.quoted %}
— {% if entry.quoted_account %} {{ entry.quoted }} {% else %} {{ entry.quoted }} {% endif %} {% if entry.context %} , {{ entry.context }} {% endif %}
{% endif %} {% if entry.creator %} {% endif %} #{{ entry.diario_id }}
{% endfor %} {% if entries|length == 1000 %} Pagina successiva {% endif %}
{% endblock %}