diff --git a/vrobbler/templates/scrobbles/scrobble_detail.html b/vrobbler/templates/scrobbles/scrobble_detail.html index b203811..d3cf99b 100644 --- a/vrobbler/templates/scrobbles/scrobble_detail.html +++ b/vrobbler/templates/scrobbles/scrobble_detail.html @@ -7,6 +7,7 @@ {% block title %}{{object.name}}{% endblock %} {% block head_extra %} + {% endblock %} @@ -90,6 +95,12 @@

{{ object.logdata.description }}

{% endif %} +{% if object.media_type == "Trail" and object.gpx_file %} +
+
+
+{% endif %} +

Tags: {% if object.tags.all %} @@ -206,4 +217,27 @@ {% endblock %} -{% block extra_js %}{{ block.super }}{{ log_form.media }}{% endblock %} +{% block extra_js %} +{{ block.super }} +{{ log_form.media }} +{% if object.media_type == "Trail" and object.gpx_file %} + + + +{% endif %} +{% endblock %}