diff --git a/app/stores/templates/stores/store_online_list.html b/app/stores/templates/stores/store_online_list.html
index 9e3eb1e..80d996b 100644
--- a/app/stores/templates/stores/store_online_list.html
+++ b/app/stores/templates/stores/store_online_list.html
@@ -2,7 +2,7 @@
{% load staticfiles %}
{% block title %}
- Stores
+ Online Stores
{% endblock %}
{% block style %}
@@ -28,7 +28,7 @@
{% block content %}
diff --git a/app/stores/templates/stores/store_retail_list.html b/app/stores/templates/stores/store_retail_list.html
new file mode 100644
index 0000000..4a5121d
--- /dev/null
+++ b/app/stores/templates/stores/store_retail_list.html
@@ -0,0 +1,76 @@
+{% extends "base.html" %}
+{% load staticfiles %}
+
+{% block title %}
+ Retail Stores
+{% endblock %}
+
+{% block style %}
+
+{% endblock %}
+
+{% block scripts %}
+
+
+
+{% endblock %}
+
+{% block content %}
+
+
+
+
+
+ {% if store_list.count %}
+
+
+ | Name | Town/City | Country |
+
+
+ {% for store in store_list %}
+
+ | {{ store }} |
+ {{ store.address.city }} |
+ {{ store.address.country }} |
+
+ {% endfor %}
+
+
+ {% include "stores/paginator.html" %}
+ {% else %}
+ {% if search_query %}
+
No results found for the search "{{ search_query }}".
+ {% endif %}
+ {% endif %}
+
+
+
+
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/app/stores/views/stores.py b/app/stores/views/stores.py
index cd89435..79227c6 100644
--- a/app/stores/views/stores.py
+++ b/app/stores/views/stores.py
@@ -36,6 +36,7 @@ class OnlineStoreListView(StoreListView):
class RetailStoreListView(StoreListView):
+ template_name_suffix = '_retail_list'
def get_queryset(self):
qs = super(RetailStoreListView, self).get_queryset()