mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-23 15:51:56 +00:00
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 %}
|