2008-10-27 00:36:06 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wiki_markup %}
|
|
|
|
|
|
|
|
{% block title %}Person Index{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2009-01-18 15:59:37 +00:00
|
|
|
|
2008-10-27 00:36:06 +00:00
|
|
|
{% for person in persons %}
|
2009-01-18 15:59:37 +00:00
|
|
|
<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>
|
|
|
|
{% for persontrip in personexpedition.persontrip_set.all %}
|
|
|
|
<a href="{% url logbookentry persontrip.logbook_entry.id %}">{{persontrip.date}}</a>
|
2008-10-27 00:36:06 +00:00
|
|
|
{% endfor %}
|
2009-01-18 15:59:37 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</td></tr></table>
|
|
|
|
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2008-10-27 00:36:06 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2009-01-18 15:59:37 +00:00
|
|
|
|
2008-10-27 00:36:06 +00:00
|
|
|
{% endblock %}
|