diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/detail.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/templates/detail.html b/templates/detail.html index 03ffe25..351ab4e 100644 --- a/templates/detail.html +++ b/templates/detail.html @@ -1,9 +1,8 @@ {% load i18n %} <h2>{{ marker.name }}</h2> <div id='detail_content'> -{%trans marker.subcategory.name%} {% if marker.picture %}<img src='{{media_path}}{{marker.picture}}' alt='{{marker.name}}'/>{%endif%} <div>{% for property in marker.getProperties %} -<p id='{{property.propertymodel.getNamedId}}'>{{ property.value }}</p> +<p id='{{property.propertymodel.getNamedId}}'>{{ property.value|safe }}</p> {% endfor %}</div> -</div>
\ No newline at end of file +</div> |
