diff options
Diffstat (limited to 'templates/qm.html')
-rw-r--r-- | templates/qm.html | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/templates/qm.html b/templates/qm.html index 58f040a..be611f4 100644 --- a/templates/qm.html +++ b/templates/qm.html @@ -1,9 +1,8 @@ {% extends "base.html" %} -{% load wiki_markup %} {% load link %} -{% block title %} QM: {{qm|wiki_to_html_short}} {% endblock %} +{% block title %} QM: {{qm|safe}} {% endblock %} -{% block editLink %}| <a href={{qm.get_admin_url}}>Edit QM {{qm|wiki_to_html_short}}</a>{% endblock %} +{% block editLink %}| <a href={{qm.get_admin_url}}>Edit QM {{qm|safe}}</a>{% endblock %} @@ -11,7 +10,7 @@ <table id="cavepage"> <tr> <th id="kat_no"><a href="{{qm.get_previous_by_id.get_absolute_url}}">Previous</a></th> -<th id="name">{{qm|wiki_to_html_short}}</th> +<th id="name">{{qm|safe}}</th> <th id="status"><a href="{{qm.get_next_by_id.get_absolute_url}}">Next</a></th> </tr> </table> |