mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-23 15:51:56 +00:00
33 lines
706 B
HTML
33 lines
706 B
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
|
|
{% block title %}Person Index{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% 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>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|