diff options
Diffstat (limited to 'chimere/templates/detail.html')
| -rw-r--r-- | chimere/templates/detail.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chimere/templates/detail.html b/chimere/templates/detail.html new file mode 100644 index 0000000..351ab4e --- /dev/null +++ b/chimere/templates/detail.html @@ -0,0 +1,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> |
