diff --git a/apimanager/base/templates/base.html b/apimanager/base/templates/base.html
index c0c1a0b..4617c13 100644
--- a/apimanager/base/templates/base.html
+++ b/apimanager/base/templates/base.html
@@ -102,10 +102,10 @@
{% endif %}
-
- English
+ Language
+ EN
|
- Spanish
+ ES
diff --git a/apimanager/products/views.py b/apimanager/products/views.py
index 1bcdd05..04aaedc 100644
--- a/apimanager/products/views.py
+++ b/apimanager/products/views.py
@@ -109,6 +109,7 @@ class UpdateProductView(LoginRequiredMixin, FormView):
}
try:
result = self.api.put(urlpath, payload=payload)
+ print(result, "This is result")
if 'code' in result and result['code']>=400:
error_once_only(self.request, result['message'])
return super(UpdateProductView, self).form_invalid(form)