forked from expo/troggle
4b34241a16
Added edit links to caves, people, logbook entries, and people. Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8260 by aaron @ 2/26/2009 5:28 AM
53 lines
1.8 KiB
HTML
53 lines
1.8 KiB
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
|
|
{% block title %}Expedition {{expedition.name}}{% endblock %}
|
|
{% block editLink %}<a href={{expedition.get_admin_url}}>Edit expedition {{expedition|wiki_to_html_short}}</a>{% endblock %}
|
|
{% block content %}
|
|
<h2>{{expedition.name}}: {{expedition.date_from}} - {{expedition.date_to}}</h2>
|
|
|
|
<div id="col2">
|
|
<table class="prevnextexpeditions">
|
|
<tr>
|
|
<td>{% if expedition_prev %}< < <a href="{{ expedition_prev.get_absolute_url }}">{{expedition_prev.year}}</a>{% endif %}</td>
|
|
<td>{% if expedition_next %}> > <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 %}
|