summaryrefslogtreecommitdiffstats
path: root/templates/person.html
blob: 140aa8d322309c4216f57b5f0b1f376779b59003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% 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 %}