summaryrefslogtreecommitdiff
path: root/chimere/templates/detail.html
blob: 351ab4e668b836c7a0ae87af6973dc450bdaf388 (plain)
1
2
3
4
5
6
7
8
{% load i18n %}
<h2>{{ marker.name }}</h2>
<div id='detail_content'>
{% 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|safe }}</p>
{% endfor %}</div>
</div>