diff options
Diffstat (limited to 'templates/person.html')
-rw-r--r-- | templates/person.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/templates/person.html b/templates/person.html index d9d8cb8..ad4b3a2 100644 --- a/templates/person.html +++ b/templates/person.html @@ -1,11 +1,10 @@ {% extends "base.html" %} -{% load wiki_markup %} -{% block title %}Person {{person|wiki_to_html_short}}{% endblock %} +{% block title %}Person {{person}}{% endblock %} -{% block editLink %}| <a href={{person.get_admin_url}}>Edit person {{person|wiki_to_html_short}}</a>{% endblock %} +{% block editLink %}| <a href={{person.get_admin_url}}>Edit person {{person}}</a>{% endblock %} {% block contentheader %} -<h2> {{person|wiki_to_html_short}} </h2> +<h2> {{person|safe}} </h2> {% endblock %} {% block content %} @@ -19,7 +18,7 @@ {% endif %} <br class="clearfloat" /> -<h3>{{person|wiki_to_html_short}} has been on expo in the following years:</h3> +<h3>{{person|safe}} has been on expo in the following years:</h3> <p> <ul> {% for personexpedition in person.personexpedition_set.all %} |