2009-05-13 05:14:28 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wiki_markup %}
|
|
|
|
|
2009-05-13 05:18:26 +01:00
|
|
|
{% block title %}Person {{person|wiki_to_html_short}}{% endblock %}
|
2009-05-13 05:14:28 +01:00
|
|
|
|
|
|
|
{% block content %}
|
2009-05-13 05:44:35 +01:00
|
|
|
|
|
|
|
<p>{{person|wiki_to_html_short}} has been on expo in the following years:</p>
|
|
|
|
<p>
|
2009-05-13 05:35:59 +01:00
|
|
|
{% for personexpedition in person.personexpedition_set.all %}
|
2009-05-13 05:52:15 +01:00
|
|
|
| <a href="{{ personexpedition.get_absolute_url }}">{{personexpedition.expedition.year}}</a>
|
2009-05-13 05:35:59 +01:00
|
|
|
{% endfor %}
|
2009-05-13 05:44:35 +01:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
2009-05-13 05:14:28 +01:00
|
|
|
{% endblock %}
|