{% extends "base.html" %} {% block title %}Logbook {{logbookentry.expedition.name}} {{logbookentry.title|safe}}{% endblock %} {% block content %} {% block related %}{% endblock %} {% block nav %}{% endblock %}

{{logbookentry.title|safe}}

{{logbookentry.expedition.year}} calendar page     full logbook     logbook report

{% if logbookentry.cave %}

place: {{logbookentry.place|safe}}

{% else %}

{{logbookentry.place|safe}}

{% endif %}

{% if logbookentry.get_previous_by_date %} {{logbookentry.get_previous_by_date.date|date:"D d M Y"}}    {% endif %} {% if logbookentry.get_next_by_date %} {{logbookentry.get_next_by_date.date|date:"D d M Y"}} {% endif %}

{% for personlogentry in logbookentry.personlogentry_set.all %} {% if personlogentry.is_logbook_entry_author %} {% endfor %}
CaverT/UPrevNext
{% else %} {% endif %} {{personlogentry.nickname_used}} {% if personlogentry.timeunderground %} - T/U {{personlogentry.timeunderground}}

{% endif %}
{% if personlogentry.prev_personlog %} {{personlogentry.prev_personlog.logbook_entry.date|date:"D d M Y"}} {% endif %} {% if personlogentry.next_personlog %} {{personlogentry.next_personlog.logbook_entry.date|date:"D d M Y"}} {% endif %}
{{logbookentry.date|date:"D d M Y"}} {% for personlogentry in logbookentry.personlogentry_set.all %}{% if personlogentry.is_logbook_entry_author %}
{{personlogentry.nickname_used}} {% endif %}{% endfor %}

{{logbookentry.text|safe}}

Edit this entry.

{% include 'onthisdate.html' %} {% endblock %}