{% extends "logbook/base.html" %} {% block content %} {% if user.is_authenticated %}

В полете: {{ delta }}

Сегодня
{% for day in days %}

День {{ day.daynumber }}

{{ day.date }}

{% if user.is_authenticated %}{% if day.title %}{{ day.title }}{% endif %}{% endif %}

{% if user.is_authenticated %}

{% autoescape on %} {% if day.notes %}{{ day.notes|linebreaks }} [{{ day.modified|date:"d M Y H:i:s" }}]{% endif %} {% endautoescape %}

{% endif %} {% if user.is_authenticated %} Обновить{% endif %}

Документы

{% if user.is_authenticated %} {% for upload in day.logbookupload_set.all %}

{{ upload.title|truncatechars:30 }}

{% endfor %} Добавить {% endif %}
{% endfor %} {% else %} {% endif %} {% endblock %}