{% 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 %}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.
Caver | {% for expeditionday in expedition.expeditionday_set.all %}{{expeditionday.date.day}} | {% endfor %}|
---|---|---|
{{personexpeditionday.personexpedition.person}} | {% for persondayactivities in personexpeditionday.personrow %} {% if persondayactivities.persontrips or persondayactivities.survexblocks %}
{% for persontrip in persondayactivities.persontrips %}
T
{% endfor %}
{% for survexblock in persondayactivities.survexblocks %} S {% endfor %} |
{% else %}
{% endif %} {% endfor %} |
Date | Logged trips | Surveys |
---|---|---|
{{date.grouper}} | {% 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 %} |