summaryrefslogtreecommitdiffstats
path: root/templates/personindex.html
blob: ca8b9b5a660ffc896f89ef108dca00963b7bfca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% 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 %}