2011-07-11 02:10:22 +01:00
|
|
|
{% extends "base.html" %}
|
2021-04-03 21:59:18 +01:00
|
|
|
{% load wiki_markup %}
|
2011-07-11 02:10:22 +01:00
|
|
|
{% block title %}Expedition {{expedition.name}}{% endblock %}
|
|
|
|
{% block editLink %}<a href={{expedition.get_admin_url}}>Edit expedition {{expedition|wiki_to_html_short}}</a>{% endblock %}
|
|
|
|
|
|
|
|
{% block related %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h2>{{expedition.name}}</h2>
|
|
|
|
|
|
|
|
<p><b>Other years:</b>
|
|
|
|
{% for otherexpedition in expeditions %}
|
|
|
|
{% ifequal otherexpedition expedition %}
|
|
|
|
| <b>{{otherexpedition.year}}</b>
|
|
|
|
{% else %}
|
|
|
|
| <a href="{{otherexpedition.get_absolute_url}}">{{ otherexpedition.year }}</a>
|
|
|
|
{% endifequal %}
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
2021-04-16 01:56:43 +01:00
|
|
|
<p>See also the <a href="/years/{{expedition.year}}/">documentation index</a> for this Expo
|
2021-04-10 02:12:13 +01:00
|
|
|
<p>Reparse and reload this year's logbook by clicking here: <a href="/expedition/{{expedition.year}}?reload">RELOAD</a>
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
<p><b>At a single glance:</b> 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.</p>
|
|
|
|
|
|
|
|
<table class="expeditionpersonlist">
|
|
|
|
<tr>
|
|
|
|
<th>Caver</th>
|
|
|
|
{% for expeditionday in expedition.expeditionday_set.all %}
|
|
|
|
<th>
|
|
|
|
{{expeditionday.date.day}}
|
|
|
|
</th>
|
|
|
|
{% endfor %}
|
|
|
|
</tr>
|
|
|
|
{% for personexpeditionday in personexpeditiondays %}
|
|
|
|
<tr>
|
2019-06-26 18:36:08 +01:00
|
|
|
<td><a href="{{ personexpeditionday.personexpedition.get_absolute_url }}">{{personexpeditionday.personexpedition.person|safe}}</a></td>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% for persondayactivities in personexpeditionday.personrow %}
|
|
|
|
|
|
|
|
{% if persondayactivities.persontrips or persondayactivities.survexblocks %}
|
|
|
|
<td class="persondayactivity">
|
|
|
|
{% for persontrip in persondayactivities.persontrips %}
|
2019-03-06 23:20:34 +00:00
|
|
|
<a href="{{persontrip.logbook_entry.get_absolute_url}}" class="dayindexlog-1">T</a>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endfor %}
|
|
|
|
<br/>
|
|
|
|
{% for survexblock in persondayactivities.survexblocks %}
|
2018-04-11 22:02:57 +01:00
|
|
|
<a href="{% url "svx" survexblock.survexfile.path %}" class="dayindexsurvex-{{survexblock.DayIndex}}">S</a>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
{% else %}
|
|
|
|
<td class="persondayactivity-nothing">
|
|
|
|
</td>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<form action="" method="GET"><input type="submit" name="reload" value="Reload"></form>
|
|
|
|
|
|
|
|
<h3>Logbooks and survey trips per day</h3>
|
2020-07-26 03:22:37 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
<table class="expeditionlogbooks">
|
|
|
|
<tr><th>Date</th><th>Logged trips</th><th>Surveys</th></tr>
|
|
|
|
{% regroup dateditems|dictsort:"date" by date as dates %}
|
|
|
|
{% for date in dates %}
|
|
|
|
<tr>
|
2019-04-02 02:04:38 +01:00
|
|
|
<td>{{date.grouper|date:"D d M Y"}}</td>
|
2011-07-11 02:10:22 +01:00
|
|
|
<td>{% for item in date.list %}
|
|
|
|
{% if item.isLogbookEntry %}<a href="{{ item.get_absolute_url }}">{{item.title|safe}}</a><br/>{% endif %}
|
|
|
|
{% endfor %}</td>
|
|
|
|
<td>{% for item in date.list %}
|
2018-04-11 22:02:57 +01:00
|
|
|
{% if item.isSurvexBlock %}<a href="{% url "svx" item.survexfile.path %}">{{item.name}}</a><br/>{% endif %}
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endfor %}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock %}
|