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

debug message: {{message}}

{% endif %}

{{expedition.name}}

Other years: {% for otherexpedition in expeditions %} {% ifequal otherexpedition expedition %} | {{otherexpedition.year}} {% else %} | {{ otherexpedition.year }} {% endifequal %} {% endfor %}

At a single glance: The table shows all expo cavers and their recorded trips. The columns are the date in the month (July or August), with a "T" for a logbook entry, and an "S" for a survey trip. The colours are the same for people on the same trip.

{% for expeditionday in expedition.expeditionday_set.all %} {% endfor %} {% for personexpeditionday in personexpeditiondays %} {% for persondayactivities in personexpeditionday.personrow %} {% if persondayactivities.persontrips or persondayactivities.survexblocks %} {% else %} {% endif %} {% endfor %} {% endfor %}
Caver {{expeditionday.date.day}}
{{personexpeditionday.personexpedition.person}} {% for persontrip in persondayactivities.persontrips %} T {% endfor %}
{% for survexblock in persondayactivities.survexblocks %} S {% endfor %}

Logbooks and survey trips per day

{% for expeditionday in expedition.expeditionday_set.all %} {% endfor %}
DateLogged tripsSurveys
{{expeditionday.date}} {% for logbookentry in expeditionday.logbookentry_set.all %} {{logbookentry.title|safe}}
{% endfor %}
{% for survexblock in expeditionday.survexblock_set.all %} {{survexblock.name}} {% endfor %}
{% endblock %}