summaryrefslogtreecommitdiffstats
path: root/registration/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'registration/views.py')
-rw-r--r--registration/views.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/registration/views.py b/registration/views.py
index 5df17b4..8228fa9 100644
--- a/registration/views.py
+++ b/registration/views.py
@@ -13,7 +13,6 @@ from django.shortcuts import render_to_response
from django.template import RequestContext
from django.contrib.auth import login
-
from registration.forms import RegistrationForm
from registration.models import RegistrationProfile
@@ -69,7 +68,6 @@ def activate(request, activation_key,
c = {}
c.update(csrf(request))
-
activation_key = activation_key.lower() # Normalize before trying anything with it.
account = RegistrationProfile.objects.activate_user(activation_key)
try:
@@ -81,11 +79,10 @@ def activate(request, activation_key,
context = RequestContext(request)
for key, value in extra_context.items():
context[key] = callable(value) and value() or value
- # merge local settings dict with csrf token dict and render. (could use render()from django 1.34 onwards)
return render_to_response(template_name,
c.update({ 'account': account,
- 'expiration_days': settings.ACCOUNT_ACTIVATION_DAYS, 'settings':settings, }),
- context_instance=context)
+ 'expiration_days': settings.ACCOUNT_ACTIVATION_DAYS, 'settings':settings}),
+ context_instance=context,)
def register(request, success_url=None,
@@ -168,7 +165,6 @@ def register(request, success_url=None,
context = RequestContext(request)
for key, value in extra_context.items():
context[key] = callable(value) and value() or value
- # merge local settings dict with csrf token dict and render. (could use render()from django 1.34 onwards)
return render_to_response(template_name,
c.update({ 'form': form,'settings':settings }),
context_instance=context)