{% 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 %}

{{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|safe}} {% for persontrip in persondayactivities.persontrips %} T {% endfor %}
{% for survexblock in persondayactivities.survexblocks %} S {% endfor %}

Logbooks and survey trips per day

New logbook entry {% regroup dateditems|dictsort:"date" by date as dates %} {% for date in dates %} {% endfor %}
DateLogged tripsSurveys
{{date.grouper|date:"D d M Y"}} {% for item in date.list %} {% if item.isLogbookEntry %}{{item.title|safe}}
{% endif %} {% endfor %}
{% for item in date.list %} {% if item.isSurvexBlock %}{{item.name}}
{% endif %} {% endfor %}
{% endblock %}