diff options
Diffstat (limited to 'chimere/templates/detail.html')
-rw-r--r-- | chimere/templates/detail.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chimere/templates/detail.html b/chimere/templates/detail.html index fd8712d..94f8eae 100644 --- a/chimere/templates/detail.html +++ b/chimere/templates/detail.html @@ -6,10 +6,10 @@ <p id='{{property.propertymodel.getNamedId}}'>{{ property.value|safe }}</p> {% endfor %}</div>{% if share_networks %} {% if simple %}{% trans "Share on"%}{% for share_network in share_networks %} -<a href='{{share_network.1}}' onclick='processTinyUrl("{{share_network.1}}", {{marker.id}}); return false;'>{{share_network.0}}</a> +<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}}' onclick='processTinyUrl("{{share_network.1}}", {{marker.id}}); return false;'><img src="{{share_network.2}}" alt="{{share_network.0}}"/></a></li> +<li><a href='{{share_network.1}}'><img src="{{share_network.2}}" alt="{{share_network.0}}"/></a></li> {% endfor %}</ul>{% endif %} {% endif %} </div> |