forked from expo/troggle
264594ed05
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8224 by julian @ 1/24/2009 6:26 PM
17 lines
479 B
HTML
17 lines
479 B
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
|
|
{% block title %}Person {{person|wiki_to_html_short}}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>{{person|wiki_to_html_short}} has been on expo in the following years:</p>
|
|
<p>
|
|
{% for personexpedition in person.personexpedition_set.all %}
|
|
| <a href="{% url personexpedition personexpedition.person.href personexpedition.expedition.year %}">{{personexpedition.expedition.year}}</a>
|
|
{% endfor %}
|
|
</p>
|
|
|
|
|
|
{% endblock %}
|