forked from expo/troggle
f229ff35f9
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8180 by julian @ 1/18/2009 3:59 PM
29 lines
866 B
HTML
29 lines
866 B
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
|
|
{% block title %}Person {{person|wiki_to_html_short}}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="personblock"><a href="{% url person person.href%}">{{person|wiki_to_html_short}}</a>
|
|
<ul>
|
|
{% for personexpedition in person.personexpedition_set.all %}
|
|
<li>
|
|
<table><tr><td>
|
|
{{personexpedition.expedition}}
|
|
</td><td>
|
|
<div>
|
|
<ul>
|
|
{% for persontrip in personexpedition.persontrip_set.all %}
|
|
<li><a href="{% url logbookentry persontrip.logbook_entry.id %}">{{persontrip.date}}</a> {{persontrip.logbookentry}}
|
|
({{persontrip.logbookentry.place|wiki_to_html_short}}) -
|
|
{{persontrip.logbookentry.title|wiki_to_html_short}}</li>
|
|
{% endfor %}
|
|
<ul>
|
|
</div>
|
|
</td></tr></table>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|