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 -->
2022-12-20 16:38:32 +00:00
{% block title %}Logbook {{logbookentry.expedition.name}} {{logbookentry.title|safe}}{% endblock %}
2011-07-11 02:10:22 +01:00
{% 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 %}
2022-12-18 21:20:30 +00:00
< p > place: < a href = "{{ logbookentry.cave.get_absolute_url }}" > {{logbookentry.place|safe}}< / p >
2011-07-11 02:10:22 +01:00
{% 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 >
2023-01-30 16:07:44 +00:00
{% for personlogentry in logbookentry.persontrip_set.all %}
2011-07-11 02:10:22 +01:00
< tr >
2023-01-30 16:07:44 +00:00
{% if personlogentry.is_logbook_entry_author %}
2011-07-11 02:10:22 +01:00
< td class = "author" >
{% else %}
< td >
2021-04-19 01:32:18 +01:00
{% endif %}
2023-01-30 16:07:44 +00:00
< a href = "{{ personlogentry.personexpedition.get_absolute_url }}" > {{personlogentry.personexpedition.person}}< / a >
2011-07-11 02:10:22 +01:00
< / td >
< td >
2023-01-30 16:07:44 +00:00
{% if personlogentry.timeunderground %}
- T/U {{personlogentry.timeunderground}}< / p >
2011-07-11 02:10:22 +01:00
{% endif %}
< / td >
< td >
2023-01-30 16:07:44 +00:00
{% if personlogentry.prev_personlog %}
< a href = "{{ personlogentry.prev_personlog.logbook_entry.get_absolute_url }}" > {{personlogentry.prev_personlog.logbook_entry.date|date:"D d M Y"}}< / a >
2011-07-11 02:10:22 +01:00
{% endif %}
< / td >
< td >
2023-01-30 16:07:44 +00:00
{% if personlogentry.next_personlog %}
< a href = "{{ personlogentry.next_personlog.logbook_entry.get_absolute_url }}" > {{personlogentry.next_personlog.logbook_entry.date|date:"D d M Y"}}< / a >
2011-07-11 02:10:22 +01:00
{% endif %}
< / td >
< / tr >
{% endfor %}
< / table >
< / 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 >
2023-01-30 16:07:44 +00:00
{% for personlogentry in logbookentry.persontrip_set.all %}{% if personlogentry.is_logbook_entry_author %}< br / > {{personlogentry.personexpedition.person}}{% endif %}{% endfor %}
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 >
2022-09-27 21:59:25 +01:00
< 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 %}
2022-10-03 19:18:35 +01:00
< 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 %}
2022-09-27 21:59:25 +01:00
{% empty %}
2022-10-03 19:18:35 +01:00
< em > None found for this date.< / em > < br >
2022-09-27 21:59:25 +01:00
{% 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 >
2011-07-11 02:10:22 +01:00
{% endblock %}