forked from expo/troggle
70 lines
2.2 KiB
HTML
70 lines
2.2 KiB
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
{% load link %}
|
|
|
|
{% block title %}Expedition {{expedition.name}}{% endblock %}
|
|
{% block editLink %}<a href={{expedition.get_admin_url}}>Edit expedition {{expedition|wiki_to_html_short}}</a>{% endblock %}
|
|
|
|
{% block related %}
|
|
<table class="prevnextexpeditions">
|
|
<tr>
|
|
<td>{% if expedition_prev %}< < {{ expedition_prev|link }} {% endif %}</td>
|
|
<td>{% if expedition_next %}> > {{ expedition_next|link }} {% 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>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>{{expedition.name}}: {{expedition.date_from}} - {{expedition.date_to}}</h2>
|
|
|
|
|
|
<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>
|
|
|
|
<div>
|
|
<h3 id="surveysdone">Surveys done</h3>
|
|
<table class="survextrip">
|
|
<tr><th>Date</th><th>Name</th><th>Length</th></tr>
|
|
{% for survexblock in expedition.survexblock_set.all %}
|
|
<tr>
|
|
<td>{{survexblock.date}}</td>
|
|
<td><a href="{% url svx survexblock.survexfile.path %}">{{survexblock.name}}</a></td>
|
|
<td>{{survexblock.totalleglength}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
{% endblock %}
|