diff --git a/shop/views.py b/shop/views.py
index 1e5da46f..1a873f46 100644
--- a/shop/views.py
+++ b/shop/views.py
@@ -184,10 +184,6 @@ def add_product(request):
@login_required
def edit_product(request, product_id):
""" A view so shop manager can edit existing products """
- if not request.user.is_superuser:
- messages.error(request, 'Sorry, only store owners can do that.')
- return redirect(reverse('home'))
-
product = get_object_or_404(Product, pk=product_id)
if request.method == 'POST':
form = EditProductForm(request.POST, request.FILES, instance=product)
@@ -215,10 +211,6 @@ def edit_product(request, product_id):
@login_required
def delete_product(request, product_id):
""" A view so shop manager can delete existing products """
- if not request.user.is_superuser:
- messages.error(request, 'Sorry, only store owners can do that.')
- return redirect(reverse('home'))
-
product = get_object_or_404(Product, pk=product_id)
product.delete()
messages.success(request, 'Product deleted!')
diff --git a/templates/includes/shop-nav.html b/templates/includes/shop-nav.html
index 4892cf2b..8946e038 100644
--- a/templates/includes/shop-nav.html
+++ b/templates/includes/shop-nav.html
@@ -7,7 +7,8 @@
Digital Art
- Pop Art
+ Pop Art