diff --git a/Changelog b/Changelog
index 1d2d8a8f..7df1f113 100644
--- a/Changelog
+++ b/Changelog
@@ -1,2 +1,7 @@
1.0.0: 2017-05-25
- * Initial stable release
\ No newline at end of file
+ * Initial stable release
+1.0.1: 2017-05-26
+ * [datacenterlight] Allow storage to shrink / grow only in 10th of GB
+ * [datacenterlight] Fix initially shown price
+1.0.2: 2017-05-28
+ * [datacenterlight] Fixed login redirecting to blank page after logout
diff --git a/datacenterlight/templates/datacenterlight/index.html b/datacenterlight/templates/datacenterlight/index.html
index 292b233f..89297926 100755
--- a/datacenterlight/templates/datacenterlight/index.html
+++ b/datacenterlight/templates/datacenterlight/index.html
@@ -240,7 +240,7 @@
2 GB RAM,
-
{% trans "15 GB Storage (SSD)" %}
+
{% trans "10 GB Storage (SSD)" %}
{% trans "Order Now!" %}
diff --git a/hosting/templates/hosting/payment.html b/hosting/templates/hosting/payment.html
index 3e076743..1f7b9cff 100644
--- a/hosting/templates/hosting/payment.html
+++ b/hosting/templates/hosting/payment.html
@@ -122,10 +122,6 @@
-
-
-
-
diff --git a/utils/views.py b/utils/views.py
index 75506959..b547506f 100644
--- a/utils/views.py
+++ b/utils/views.py
@@ -40,6 +40,8 @@ class LoginViewMixin(FormView):
def get_success_url(self):
next_url = self.request.POST.get('next', self.success_url)
+ if not next_url:
+ return self.success_url
return next_url
def form_valid(self, form):
@@ -54,7 +56,6 @@ class LoginViewMixin(FormView):
return HttpResponseRedirect(self.get_success_url())
def get(self, request, *args, **kwargs):
-
if self.request.user.is_authenticated():
return HttpResponseRedirect(self.get_success_url())