{% extends "logbook/base.html" %} {% block content %} {% for day in days %} {% if day.logbookupload_set.all %}
    {% for upload in day.logbookupload_set.all %}
  1. {{ upload.title }} [{{ upload.owner.user }}, {{ upload.uploaded|date:"d M Y H:i:s" }}]

  2. {% endfor %}
{% if user.is_authenticated %} Добавить{% endif %}
{% endif %} {% endfor %} {% endblock %}