diff options
Diffstat (limited to 'templates/detail.html')
-rw-r--r-- | templates/detail.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/detail.html b/templates/detail.html new file mode 100644 index 0000000..465d775 --- /dev/null +++ b/templates/detail.html @@ -0,0 +1,7 @@ +{% load i18n %} +<h3>{{marker.name}}</h3> +<div>{%trans marker.subcategory.name%}</div> +{% 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> +{% endfor %}</div>
\ No newline at end of file |