diff options
Diffstat (limited to 'templates/person.html')
-rw-r--r-- | templates/person.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/person.html b/templates/person.html index 140aa8d..8f8c820 100644 --- a/templates/person.html +++ b/templates/person.html @@ -8,7 +8,7 @@ <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>
+ | <a href="{{ personexpedition.get_absolute_url }}">{{personexpedition.expedition.year}}</a>
{% endfor %}
</p>
|