2011-07-11 02:10:22 +01:00
|
|
|
{% extends "base.html" %}
|
2022-03-10 18:58:58 +00:00
|
|
|
<!-- templates/logbookentry.html - this text visible because this template has been included -->
|
2011-07-11 02:10:22 +01:00
|
|
|
{% block title %}Logbook {{logbookentry.id}}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{% block related %}{% endblock %}
|
|
|
|
{% block nav %}{% endblock %}
|
2019-04-02 02:04:38 +01:00
|
|
|
<h2>{{logbookentry.title|safe}}</h2>
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
<div id="related">
|
2021-04-20 22:58:41 +01:00
|
|
|
<p><a href="{{ logbookentry.expedition.get_absolute_url }}">{{logbookentry.expedition.name}}</a>
|
2022-03-10 18:58:58 +00:00
|
|
|
<a href="/years/{{logbookentry.expedition.year}}/{{logbookentry.expedition.logbookfile}}">Full logbook</a>
|
2021-04-20 22:58:41 +01:00
|
|
|
</p>
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
{% if logbookentry.cave %}
|
|
|
|
<p>place: <a href="{{ logbookentry.cave.get_absolute_url }}">{{logbookentry.place}}</p>
|
|
|
|
{% else %}
|
2021-04-20 22:58:41 +01:00
|
|
|
<p>{{logbookentry.place|safe}}</p>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{% if logbookentry.get_previous_by_date %}
|
2019-04-14 22:45:31 +01:00
|
|
|
<a href="{{ logbookentry.get_previous_by_date.get_absolute_url }}">{{logbookentry.get_previous_by_date.date|date:"D d M Y"}}</a>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if logbookentry.get_next_by_date %}
|
2019-04-14 22:45:31 +01:00
|
|
|
<a href="{{ logbookentry.get_next_by_date.get_absolute_url }}">{{logbookentry.get_next_by_date.date|date:"D d M Y"}}</a>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% 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>
|
2021-04-19 01:32:18 +01:00
|
|
|
{% if persontrip.personexpedition == logbookentry.author %}
|
2011-07-11 02:10:22 +01:00
|
|
|
<td class="author">
|
|
|
|
{% else %}
|
|
|
|
<td>
|
2021-04-19 01:32:18 +01:00
|
|
|
{% endif %}
|
2011-07-11 02:10:22 +01:00
|
|
|
<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 %}
|
2019-04-14 22:45:31 +01:00
|
|
|
<a href="{{ persontrip.persontrip_prev.logbook_entry.get_absolute_url }}">{{persontrip.persontrip_prev.logbook_entry.date|date:"D d M Y"}}</a>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if persontrip.persontrip_next %}
|
2019-04-14 22:45:31 +01:00
|
|
|
<a href="{{ persontrip.persontrip_next.logbook_entry.get_absolute_url }}">{{persontrip.persontrip_next.logbook_entry.date|date:"D d M Y"}}</a>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% if newQMlink %}
|
|
|
|
<a href="{{newQMlink}}">Add QM found on this trip</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="col1">
|
2019-03-30 17:02:07 +00:00
|
|
|
<div class="logbookentry">
|
2019-04-02 02:04:38 +01:00
|
|
|
<b>{{logbookentry.date|date:"D d M Y"}}</b>
|
2021-04-20 22:58:41 +01:00
|
|
|
<p>{{logbookentry.text|safe}}</p>
|
2019-03-31 15:39:53 +01:00
|
|
|
</div>
|
2011-07-11 02:10:22 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|