summaryrefslogtreecommitdiff
path: root/chimere/templates/detail.html
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/templates/detail.html')
-rw-r--r--chimere/templates/detail.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/chimere/templates/detail.html b/chimere/templates/detail.html
deleted file mode 100644
index c35f664..0000000
--- a/chimere/templates/detail.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% load i18n %}
-{% load sanitize %}
-<h2>{{ marker.name }}</h2>
-<div id='detail_content'>
-{% if marker.picture %}<img src='{{STATIC_URL}}{{marker.picture}}' alt='{{marker.name}}'/>{%endif%}
-<div>
-{% if dated %}
-<p id='detail_start_date'><label>{% trans "Date:" %}</label> <span>{{marker.start_date|date:"D d M Y"}}
-{% if marker.end_date %} - {{marker.end_date|date:"D d M Y"}}</p>{% endif %}</span>
-{% endif %}
-{% for property in marker.getProperties %}
-<p id='{{property.propertymodel.getNamedId}}'>{{ property.value|sanitize:"p b i br hr strong em span:style a:href:target ul li ol h1 h2 h3 h4"|safe}}</p>
-{% endfor %}
-</div>{% if share_networks %}
-{% if simple %}{% trans "Share on"%}{% for share_network in share_networks %}
-<a href='{{share_network.1}}'>{{share_network.0}}</a>
-{% endfor %}{%else%}
-<ul id='share'><li>{% trans "Share"%}</li>{% for share_network in share_networks %}
-<li><a href='{{share_network.1}}'><img src="{{share_network.2}}" alt="{{share_network.0}}"/></a></li>
-{% endfor %}</ul>{% endif %}
-{% endif %}
-</div>