{% extends "base.html" %} {% block title %}Expedition {{expedition.name}}{% endblock %} {% block related %} {% endblock %} {% block content %}

{{expedition.name}}

Other years: {% for otherexpedition in expeditions %} {% if otherexpedition == expedition %} | {{otherexpedition.year}} {% else %} | {{ otherexpedition.year }} {% endif %} {% endfor %}

See also the

{% if logged_in %}

Reparse and reload this year's logbook by clicking here: RELOAD {% endif %}

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

{% for d in dates %} {% endfor %} {% for personexpoday in personexpodays|dictsort:"sortname" %} {% if personexpoday.personexpedition.person.mug_shot %} {% else %} {% if personexpoday.personexpedition.person.blurb %} {% else %} {% endif %} {% endif %} {% for activities in personexpoday.personrow %} {% if activities.personentries or activities.survexblocks %} {% else %} {% if activities.sunday %} {% endif %} {% endfor %} {% endfor %}
Caver  {{d.day}}/{{d.month}}
{{personexpoday.personexpedition.person.fullname|safe}} 😃 😁 {% for personentry in activities.personentries %} T {% endfor %}
{% for survexblock in activities.survexblocks %} S {% endfor %}
{% else %} {% endif %}

{{expedition.name}} - Records per day

{% regroup dateditems|dictsort:"date" by date as dates %} {% for date in dates %} {% endfor %}
DateLogged trips and diary entriesSurveysWallets
{{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 %}
{% for item in date.list %} {% if item.isSurvexBlock %} {{item.scanswallet.walletname}}
{% endif %} {% endfor %}

{{expedition.name}}

{% endblock %}