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" >
2024-08-15 20:40:20 +01:00
< p > < a href = "{{ logbookentry.expedition.get_absolute_url }}" > {{logbookentry.expedition.year}} calendar page< / a >
< a href = "/years/{{logbookentry.expedition.year}}/{{logbookentry.expedition.logbookfile}}" > full logbook< / a >
< a href = "/logreport/{{logbookentry.expedition.year}}" > logbook report< / a >
2021-04-20 22:58:41 +01:00
< / p >
2011-07-11 02:10:22 +01:00
{% if logbookentry.cave %}
2024-02-06 16:59:25 +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 %}
2024-08-15 20:40:20 +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 >
2023-08-26 16:39:29 +01:00
< style >
th, td {
padding-left: 3px;
padding-right: 3px;
}
< / style >
2011-07-11 02:10:22 +01:00
< table class = "cavers" >
< tr > < th > Caver< / th > < th > T/U< / th > < th > Prev< / th > < th > Next< / th > < / tr >
2023-01-30 23:22:28 +00:00
{% for personlogentry in logbookentry.personlogentry_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 %}
2024-07-24 20:55:46 +01:00
< a href = "{{ personlogentry.personexpedition.get_absolute_url }}" title = "{{personlogentry.personexpedition.person}}" > {{personlogentry.nickname_used}} < / 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-08-26 16:39:29 +01:00
{% for personlogentry in logbookentry.personlogentry_set.all %}{% if personlogentry.is_logbook_entry_author %}< br / > {{personlogentry.nickname_used}} {% endif %}{% endfor %}
2021-04-20 22:58:41 +01:00
< p > {{logbookentry.text|safe}}< / p >
2019-03-31 15:39:53 +01:00
< / div >
2023-08-10 21:17:03 +01:00
< p > < a href = "/logbookedit/{{logbookentry.slug|safe}}" > Edit this entry< / a > .
2024-07-16 13:45:08 +01:00
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%; " >
2023-02-26 22:13:37 +00:00
{% include 'onthisdate.html' %}
2022-09-27 21:59:25 +01:00
< / span >
2011-07-11 02:10:22 +01:00
{% endblock %}