summaryrefslogtreecommitdiffstats
path: root/templates/logbookentry.html
blob: 2bfb564b19cca8453a9a1bed90d35be4c8e8748a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{% extends "base.html" %}
{% load wiki_markup %}

{% block title %}Logbook {{logbookentry.id}}{% endblock %}

{% block content %}

<h2>{{logbookentry.title|safe}}</h2>

<div id="col2">
<p><a href="{{ logbookentry.expedition.get_absolute_url }}">{{logbookentry.expedition.name}}</a></p>

{% if logbookentry.cave %}
  <p>place: <a href="{{ logbookentry.cave.get_absolute_url }}">{{logbookentry.place}}</p>
{% else %}
  <p>{{logbookentry.place}}</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}}</a>
  {% endif %}
  {% if logbookentry.get_next_by_date %}
    <a href="{{ logbookentry.get_next_by_date.get_absolute_url }}">{{logbookentry.get_next_by_date.date}}</a>
  {% 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>
  {% ifequal persontrip.person_expedition logbookentry.author %}
    <td class="author">
  {% else %}
    <td>
  {% endifequal %}
  <a href="{{ persontrip.person_expedition.get_absolute_url }}">{{persontrip.person_expedition.person}}</a>
  </td>
  
  <td>
  {% if persontrip.timeunderground %}
     - T/U {{persontrip.timeunderground}}</p>
  {% endif %}
  </td>

  <td>
  {% if persontrip.get_previous_by_date %}
    <a href="{{ persontrip.get_previous_by_date.logbook_entry.get_absolute_url }}">{{persontrip.get_previous_by_date.date}}</a>
  {% endif %}
  </td>
  <td>
  {% if persontrip.get_next_by_date %}
     <a href="{{ persontrip.get_next_by_date.logbook_entry.get_absolute_url }}">{{persontrip.get_next_by_date.date}}</a>
  {% endif %}
  </td>
</tr>
{% endfor %}
</table>
</div>

<div id="col1">
<div class="logbookentry">
<b>{{logbookentry.date}}</b>
    {{logbookentry.text|wiki_to_html}}</div>
</div>
</div>

{% endblock %}