diff --git a/app/stores/templates/stores/store_detail.html b/app/stores/templates/stores/store_detail.html
index e8507c8..3b5509a 100644
--- a/app/stores/templates/stores/store_detail.html
+++ b/app/stores/templates/stores/store_detail.html
@@ -20,6 +20,7 @@
{% endblock %}
{% block scripts %}
+{% if store.store_type != 2 %}
+{% endif %}
{% endblock %}
{% block content %}
@@ -88,12 +90,16 @@ $(document).ready(function(){initialize_map_store()});
Address
- {{ store.name }}
+ {% if store.store_type != 2 %}
- {{ store.address.address1 }}
{% if store.address.address2 %}- {{ store.address.address2 }}
{% endif %}
{% if store.address.address3 %}- {{ store.address.address3 }}
{% endif %}
+ {% endif %}
- {{ store.address.city }}
{% if store.address.county %}- {{ store.address.county }}
{% endif %}
+ {% if store.store_type != 2 %}
- {{ store.address.postcode }}
+ {% endif %}
- {{ store.address.country }}
@@ -107,11 +113,13 @@ $(document).ready(function(){initialize_map_store()});
{% endfor %}
+ {% if store.store_type != 2 %}
+ {% endif %}
Last Updated: {{ store.changed }}