2008-10-27 00:36:06 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wiki_markup %}
|
|
|
|
|
2008-11-06 23:24:20 +00:00
|
|
|
{% block title %}Person {{person|wiki_to_html_short}}{% endblock %}
|
2008-10-27 00:36:06 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2009-01-24 18:26:49 +00:00
|
|
|
|
|
|
|
<p>{{person|wiki_to_html_short}} has been on expo in the following years:</p>
|
|
|
|
<p>
|
2009-01-18 15:59:37 +00:00
|
|
|
{% for personexpedition in person.personexpedition_set.all %}
|
2009-02-16 08:31:26 +00:00
|
|
|
| <a href="{{ personexpedition.get_absolute_url }}">{{personexpedition.expedition.year}}</a>
|
2009-01-18 15:59:37 +00:00
|
|
|
{% endfor %}
|
2009-01-24 18:26:49 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
2008-10-27 00:36:06 +00:00
|
|
|
{% endblock %}
|