summaryrefslogtreecommitdiffstats
path: root/templates/expedition.html
blob: b6be4aca121dc3ab5f2943d4a02f6df5ef212a22 (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
{% extends "base.html" %}
{% load wiki_markup %}

{% block title %}Expedition {{expedition.name}}{% endblock %}

{% block content %}
<h2>{{expedition.name}}: {{expedition.date_from}} - {{expedition.date_to}}</h2>

<div id="col2">
<table class="prevnextexpeditions">
<tr>
  <td>{% if expedition_prev %}&lt; &lt; <a href="{{ expedition_prev.get_absolute_url }}">{{expedition_prev.year}}</a>{% endif %}</td>
  <td>{% if expedition_next %}&gt; &gt; <a href="{{ expedition_next.get_absolute_url }}">{{expedition_next.year}}</a>{% endif %}</td>
</tr>
</ul>

<table class="expeditionpersonlist">
<tr><th>Caver</th><th>From</th><th>To</th></tr>
{% for personexpedition in expedition.personexpedition_set.all %}
  <tr>
    <td><a href="{{ personexpedition.get_absolute_url }}">{{personexpedition.person}}</a></td>
    <td>{{personexpedition.date_from}}</td>
    <td>{{personexpedition.date_to}}</td>
  </tr>
{% endfor %}
</table>
</div>

<div id="col1">
<h3>Logbook entries</h3>
<form action="" method="GET"><input type="submit" name="reload" value="Reload"></form>
<p>debug message: {{message}}</p>

<table class="expeditionlogbooks">
<tr><th>Date</th><th>Title</th><th>Author</th><th>Place</th></tr>
{% for logbookentry in logbookentries %}
  <tr>
    <td>{{logbookentry.date}}</td>
    <td><a href="{{ logbookentry.get_absolute_url }}">{{logbookentry.title|safe}}</td>
    <td><a href="{{ logbookentry.author.get_absolute_url }}">{{logbookentry.author.name}}</a></td>

    {% if logbookentry.cave %}
      <td><a href="{{ logbookentry.cave.get_absolute_url }}">{{logbookentry.place}}</a></td>
    {% else %}
      <td>{{logbookentry.place}}</td>
    {% endif %}
  </tr>
{% endfor %}
</table>
</div>

{% endblock %}