2009-05-13 05:15:59 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wiki_markup %}
|
|
|
|
|
|
|
|
{% block title %}Logbook {{logbookentry.id}}{% endblock %}
|
2009-05-13 05:56:56 +01:00
|
|
|
{% block editLink %}<a href={{logbookentry.get_admin_url}}>Edit logbook entry {{logbookentry|wiki_to_html_short}}</a>{% endblock %}
|
2009-05-13 05:15:59 +01:00
|
|
|
{% block content %}
|
2009-05-13 05:52:15 +01:00
|
|
|
|
2009-05-13 05:35:59 +01:00
|
|
|
<h2>{{logbookentry.title|safe}}</h2>
|
|
|
|
|
|
|
|
<div id="col2">
|
2009-05-13 05:52:15 +01:00
|
|
|
<p><a href="{{ logbookentry.expedition.get_absolute_url }}">{{logbookentry.expedition.name}}</a></p>
|
2009-05-13 05:46:12 +01:00
|
|
|
|
|
|
|
{% if logbookentry.cave %}
|
2009-05-13 05:52:15 +01:00
|
|
|
<p>place: <a href="{{ logbookentry.cave.get_absolute_url }}">{{logbookentry.place}}</p>
|
2009-05-13 05:46:12 +01:00
|
|
|
{% else %}
|
|
|
|
<p>{{logbookentry.place}}</p>
|
|
|
|
{% endif %}
|
2009-05-13 05:35:59 +01:00
|
|
|
|
2009-05-13 05:38:18 +01:00
|
|
|
<p>
|
2009-05-13 05:49:05 +01:00
|
|
|
{% if logbookentry.get_previous_by_date %}
|
2009-05-13 05:52:15 +01:00
|
|
|
<a href="{{ logbookentry.get_previous_by_date.get_absolute_url }}">{{logbookentry.get_previous_by_date.date}}</a>
|
2009-05-13 05:38:18 +01:00
|
|
|
{% endif %}
|
2009-05-13 05:49:05 +01:00
|
|
|
{% if logbookentry.get_next_by_date %}
|
2009-05-13 05:52:15 +01:00
|
|
|
<a href="{{ logbookentry.get_next_by_date.get_absolute_url }}">{{logbookentry.get_next_by_date.date}}</a>
|
2009-05-13 05:38:18 +01:00
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
|
2009-05-13 05:35:59 +01:00
|
|
|
<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>
|
|
|
|
{% ifequal persontrip.person_expedition logbookentry.author %}
|
|
|
|
<td class="author">
|
|
|
|
{% else %}
|
|
|
|
<td>
|
|
|
|
{% endifequal %}
|
2009-05-13 05:52:15 +01:00
|
|
|
<a href="{{ persontrip.person_expedition.get_absolute_url }}">{{persontrip.person_expedition.person}}</a>
|
2009-05-13 05:35:59 +01:00
|
|
|
</td>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
{% if persontrip.timeunderground %}
|
|
|
|
- T/U {{persontrip.timeunderground}}</p>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td>
|
2009-05-13 06:02:42 +01:00
|
|
|
{% if persontrip.get_previous_by_date %}
|
|
|
|
<a href="{{ persontrip.get_persons_previous_trip.logbook_entry.get_absolute_url }}">{{persontrip.get_persons_previous_trip.date}}</a>
|
2009-05-13 05:35:59 +01:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
2009-05-13 06:02:42 +01:00
|
|
|
{% if persontrip.get_persons_next_trip %}
|
|
|
|
<a href="{{ persontrip.get_persons_next_trip.logbook_entry.get_absolute_url }}">{{persontrip.get_persons_next_trip.date}}</a>
|
2009-05-13 05:35:59 +01:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="col1">
|
|
|
|
<div class="logbookentry">
|
|
|
|
<b>{{logbookentry.date}}</b>
|
|
|
|
{{logbookentry.text|wiki_to_html}}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2009-05-13 05:15:59 +01:00
|
|
|
{% endblock %}
|