mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
0ba4dd4ef4
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8199 by julian @ 1/19/2009 12:22 AM
63 lines
1.8 KiB
HTML
63 lines
1.8 KiB
HTML
{% 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="{% url expedition logbookentry.expedition.year %}">{{logbookentry.expedition.name}}</a></p>
|
|
<p>place: {{logbookentry.place}}</p>
|
|
|
|
<p>
|
|
{% if logbookentry.logbookentry_prev %}
|
|
<a href="{% url logbookentry logbookentry.logbookentry_prev.href %}">{{logbookentry.logbookentry_prev.date}}</a>
|
|
{% endif %}
|
|
{% if logbookentry.logbookentry_next %}
|
|
<a href="{% url logbookentry logbookentry.logbookentry_next.href %}">{{logbookentry.logbookentry_next.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="{% url personexpedition persontrip.person_expedition.person.href persontrip.person_expedition.expedition.year %}">{{persontrip.person_expedition.person}}</a>
|
|
</td>
|
|
|
|
<td>
|
|
{% if persontrip.timeunderground %}
|
|
- T/U {{persontrip.timeunderground}}</p>
|
|
{% endif %}
|
|
</td>
|
|
|
|
<td>
|
|
{% if persontrip.persontrip_prev %}
|
|
<a href="{% url logbookentry persontrip.persontrip_prev.logbook_entry.href %}">{{persontrip.persontrip_prev.date}}</a>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if persontrip.persontrip_next %}
|
|
<a href="{% url logbookentry persontrip.persontrip_next.logbook_entry.href %}">{{persontrip.persontrip_next.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 %}
|