forked from expo/troggle
117 lines
4.3 KiB
HTML
117 lines
4.3 KiB
HTML
{% extends "base.html" %}
|
|
<!-- templates/logbookentry.html - this text visible because this template has been included -->
|
|
{% block title %}Logbook {{logbookentry.expedition.name}} {{logbookentry.title|safe}}{% endblock %}
|
|
{% block content %}
|
|
|
|
{% block related %}{% endblock %}
|
|
{% block nav %}{% endblock %}
|
|
<h2>{{logbookentry.title|safe}}</h2>
|
|
|
|
<div id="related">
|
|
<p><a href="{{ logbookentry.expedition.get_absolute_url }}">{{logbookentry.expedition.name}}</a>
|
|
<a href="/years/{{logbookentry.expedition.year}}/{{logbookentry.expedition.logbookfile}}">Full logbook</a>
|
|
</p>
|
|
|
|
{% if logbookentry.cave %}
|
|
<p>place: <a href="{{ logbookentry.cave.get_absolute_url }}">{{logbookentry.place|safe}}</p>
|
|
{% else %}
|
|
<p>{{logbookentry.place|safe}}</p>
|
|
{% endif %}
|
|
|
|
<p>
|
|
{% if logbookentry.get_previous_by_date %}
|
|
<a href="{{ logbookentry.get_previous_by_date.get_absolute_url }}">{{logbookentry.get_previous_by_date.date|date:"D d M Y"}}</a>
|
|
{% endif %}
|
|
{% if logbookentry.get_next_by_date %}
|
|
<a href="{{ logbookentry.get_next_by_date.get_absolute_url }}">{{logbookentry.get_next_by_date.date|date:"D d M Y"}}</a>
|
|
{% endif %}
|
|
</p>
|
|
|
|
<table class="cavers">
|
|
<tr><th>Caver</th><th>T/U</th><th>Prev</th><th>Next</th></tr>
|
|
{% for persontrip in logbookentry.persontrip_set.all %}
|
|
<tr>
|
|
{% if persontrip.is_logbook_entry_author %}
|
|
<td class="author">
|
|
{% else %}
|
|
<td>
|
|
{% endif %}
|
|
<a href="{{ persontrip.personexpedition.get_absolute_url }}">{{persontrip.personexpedition.person}}</a>
|
|
</td>
|
|
|
|
<td>
|
|
{% if persontrip.timeunderground %}
|
|
- T/U {{persontrip.timeunderground}}</p>
|
|
{% endif %}
|
|
</td>
|
|
|
|
<td>
|
|
{% if persontrip.persontrip_prev %}
|
|
<a href="{{ persontrip.persontrip_prev.logbook_entry.get_absolute_url }}">{{persontrip.persontrip_prev.logbook_entry.date|date:"D d M Y"}}</a>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if persontrip.persontrip_next %}
|
|
<a href="{{ persontrip.persontrip_next.logbook_entry.get_absolute_url }}">{{persontrip.persontrip_next.logbook_entry.date|date:"D d M Y"}}</a>
|
|
{% endif %}
|
|
</td>
|
|
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
<div id="col1">
|
|
<div class="logbookentry">
|
|
<b>{{logbookentry.date|date:"D d M Y"}}</b>
|
|
{% for persontrip in logbookentry.persontrip_set.all %}{% if persontrip.is_logbook_entry_author %}<br />{{persontrip.personexpedition.person}}{% endif %}{% endfor %}
|
|
<p>{{logbookentry.text|safe}}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<span style="font-family: monospace; font-size: 150%; ">
|
|
|
|
{% if svxothers %}<u>Survex files</u> on this date:<br>
|
|
<span style="font-size: 70%; ">
|
|
{% for item in svxothers %}
|
|
{% if item.isSurvexBlock %} <a href="/survexfile/{{item.survexfile.path}}">{{item.survexfile.path|safe}}</a><br/>{% endif %}
|
|
{% empty %}
|
|
<em>None found for this date.</em><br>
|
|
{% endfor %}
|
|
</span>
|
|
{% else %}
|
|
<em>No survex files found for this date.</em><br>
|
|
{% endif %}
|
|
{% if wallets %}<u>Wallets</u> on this date:<br>
|
|
<span style="font-size: 70%; ">
|
|
{% for item in wallets %}
|
|
<a href="/survey_scans/{{item.walletname|urlencode}}/">{{item.walletname|safe}}</a>
|
|
{% if item.name %}
|
|
{{item.name|safe}} <br/>
|
|
{% else %}
|
|
{{item.get_fnames|safe}}
|
|
<br/>
|
|
{% endif %}
|
|
{% empty %}
|
|
<em>None found for this date.</em><br>
|
|
{% endfor %}
|
|
</span>
|
|
{% else %}
|
|
<em>No wallets files found for this date.</em><br>
|
|
{% endif %}
|
|
{% if trips %}<u>All logbook trips</u> on this date:<br>
|
|
<span style="font-size: 70%; ">
|
|
{% for item in trips %}
|
|
{% if item.isLogbookEntry %} <a href="{{item.get_absolute_url}}">{{item.title|safe}}</a><br/>{% endif %}
|
|
{% empty %}
|
|
<em>None found for this date, but there should be..</em><br>
|
|
{% endfor %}
|
|
</span>
|
|
{% else %}
|
|
<em>Hmm...</em><br>
|
|
{% endif %}
|
|
|
|
</span>
|
|
{% endblock %}
|