mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
32e1e6b9ab
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8044 by julian @ 10/30/2008 1:13 PM
27 lines
727 B
HTML
27 lines
727 B
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
|
|
{% block title %}Person Index{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for person in persons %}
|
|
<div class="personblock"><a href="/person/{{person.id}}">{{person}}</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="/logbookentry/{{persontrip.logbookentry.id}}">{{persontrip.date}}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</td></tr></table>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %}
|