2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2026-04-24 21:38:03 +01:00

[svn] made index of people

Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8224 by julian @ 1/24/2009 6:26 PM
This commit is contained in:
substantialnoninfringinguser
2009-05-13 05:44:35 +01:00
parent 1e1453f443
commit 264594ed05
10 changed files with 61 additions and 53 deletions

View File

@@ -5,28 +5,23 @@
{% block content %}
<table>
<tr>
{% for persons in personss %}
<td>
<table>
<tr><th>Person</th><th>First</th><th>Last</th></tr>
{% for person in persons %}
<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>
{% endfor %}
</div>
</td></tr></table>
</li>
<tr>
<td><a href="{% url person person.href%}">{{person|wiki_to_html_short}}</a></td>
<td><a href="{% url personexpedition person.href person.Firstexpedition.expedition.year %}">{{person.Firstexpedition.expedition.year}}</a></td>
<td><a href="{% url personexpedition person.href person.Lastexpedition.expedition.year %}">{{person.Lastexpedition.expedition.year}}</a></td>
</tr>
{% endfor %}
</ul>
</div>
</table>
</td>
{% endfor %}
</tr>
</table>
{% endblock %}