{% 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.year}} calendar page</a>
&nbsp;&nbsp;&nbsp;&nbsp;<a href="/years/{{logbookentry.expedition.year}}/{{logbookentry.expedition.logbookfile}}">full logbook</a>
&nbsp;&nbsp;&nbsp;&nbsp;<a href="/logreport/{{logbookentry.expedition.year}}">logbook report</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>&nbsp;&nbsp;&nbsp;
  {% 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>

<style>
th, td {
  padding-left: 3px;
  padding-right: 3px;
}
</style>
<table class="cavers">
<tr><th>Caver</th><th>T/U</th><th>Prev</th><th>Next</th></tr>
{% for personlogentry in logbookentry.personlogentry_set.all %}
<tr>
  {% if personlogentry.is_logbook_entry_author %}
    <td class="author">
  {% else %}
    <td>
  {% endif %}
  <a href="{{ personlogentry.personexpedition.get_absolute_url }}" title="{{personlogentry.personexpedition.person}}">{{personlogentry.nickname_used}} </a>
  </td>
  
  <td>
  {% if personlogentry.timeunderground %}
     - T/U {{personlogentry.timeunderground}}</p>
  {% endif %}
  </td>

  <td>
  {% 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>
  {% endif %}
  </td>
  <td>
  {% 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>
  {% endif %}
  </td>

</tr>
{% endfor %}
</table>
</div>

<div id="col1">
  <div class="logbookentry">
    <b>{{logbookentry.date|date:"D d M Y"}}</b>
    {% for personlogentry in logbookentry.personlogentry_set.all %}{% if personlogentry.is_logbook_entry_author %}<br />{{personlogentry.nickname_used}} {% endif %}{% endfor %}
    <p>{{logbookentry.text|safe}}</p>
  </div>
  <p><a href="/logbookedit/{{logbookentry.slug|safe}}">Edit this entry</a>.

</div>
</div>

    <span style="font-family: monospace;  font-size: 150%; ">
    {% include 'onthisdate.html' %}
    </span>
{% endblock %}