{% extends "base.html" %} {% load wiki_markup %} {% block title %}Expedition {{expedition.name}}{% endblock %} {% block editLink %}Edit expedition {{expedition|wiki_to_html_short}}{% endblock %} {% block content %}

{{expedition.name}}: {{expedition.date_from}} - {{expedition.date_to}}

{% if expedition_prev %}< < {{expedition_prev.year}}{% endif %} {% if expedition_next %}> > {{expedition_next.year}}{% endif %}
{% for personexpedition in expedition.personexpedition_set.all %} {% endfor %}
CaverFromTo
{{personexpedition.person}} {{personexpedition.date_from}} {{personexpedition.date_to}}

Logbook entries

debug message: {{message}}

{% for logbookentry in logbookentries %} {% if logbookentry.cave %} {% else %} {% endif %} {% endfor %}
DateTitleAuthorPlace
{{logbookentry.date}} {{logbookentry.title|safe}} {{logbookentry.author.name}}{{logbookentry.place}}{{logbookentry.place}}
{% endblock %}