expoweb/troggle/templates/person.html

29 lines
902 B
HTML
Raw Normal View History

2008-10-27 00:36:06 +00:00
{% extends "base.html" %}
{% load wiki_markup %}
{% block title %}Person {{person|wiki_to_html_short}}{% endblock %}
2008-10-27 00:36:06 +00:00
{% block content %}
<div class="personblock"><a href="/person/{{person.id}}">{{person|wiki_to_html_short}}</a>
2008-10-27 00:36:06 +00:00
<ul>
{% for personexpedition in person.personexpedition_set.all %}
<li>
<table><tr><td>
{{personexpedition.expedition}}
</td><td>
<div>
<ul>
2008-10-27 00:36:06 +00:00
{% for persontrip in personexpedition.persontrip_set.all %}
<li><a href="/logbookentry/{{persontrip.logbookentry.id}}">{{persontrip.date}}</a>
({{persontrip.logbookentry.place|wiki_to_html_short}}) -
{{persontrip.logbookentry.title|wiki_to_html_short}}</li>
2008-10-27 00:36:06 +00:00
{% endfor %}
<ul>
2008-10-27 00:36:06 +00:00
</div>
</td></tr></table>
</li>
{% endfor %}
</ul>
</div>
{% endblock %}