2008-10-27 01:36:06 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wiki_markup %}
|
|
|
|
|
2008-11-07 00:24:20 +01:00
|
|
|
{% block title %}Person {{person|wiki_to_html_short}}{% endblock %}
|
2008-10-27 01:36:06 +01:00
|
|
|
|
2009-02-17 02:09:11 +01:00
|
|
|
{% block contentheader %}
|
|
|
|
<h2> {{person|wiki_to_html_short}} </h2>
|
|
|
|
{% endblock %}
|
2009-01-24 19:26:49 +01:00
|
|
|
|
2009-02-17 02:09:11 +01:00
|
|
|
{% block content %}
|
|
|
|
{{person.blurb}}
|
|
|
|
{% for pic in person.photo_set
|
|
|
|
<div class="figure">
|
|
|
|
<p> <img src="{{ person.correctURL }}" class="thumbnail" /> </p>
|
|
|
|
</div>
|
|
|
|
|
2009-01-24 19:26:49 +01:00
|
|
|
<p>{{person|wiki_to_html_short}} has been on expo in the following years:</p>
|
|
|
|
<p>
|
2009-01-18 16:59:37 +01:00
|
|
|
{% for personexpedition in person.personexpedition_set.all %}
|
2009-02-16 09:31:26 +01:00
|
|
|
| <a href="{{ personexpedition.get_absolute_url }}">{{personexpedition.expedition.year}}</a>
|
2009-01-18 16:59:37 +01:00
|
|
|
{% endfor %}
|
2009-01-24 19:26:49 +01:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
2008-10-27 01:36:06 +01:00
|
|
|
{% endblock %}
|