I have searched all over for the answer to my problem and I am probably just missing something obvious.
I have the following:
Code
@csrf_protect
def signup(request):
if request.method == 'POST':
form = UserCreationForm(request.POST)
if form.is_valid():
new_user = form.save()
return render(request, 'signup_success.html')
else:
form = UserCreationForm()
return render(request, 'signup.html', {'form':form})
This code looks to be fine to to me but when I run it I'm seeing the following error on the test server:
Traceback
Request Method: POST
Request URL: http://XXXXXXXX:8000/signup/
Django Version: 1.4.2
Python Version: 2.7.3
Installed Applications:
('django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
'south',
'pjuu.profiles')
Installed Middleware:
('django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware')
Traceback:
File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py" in get_response
111. response = callback(request, *callback_args, **callback_kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/utils/decorators.py" in _wrapped_view
91. response = view_func(request, *args, **kwargs)
File "/home/joe/XXXX/XXXX/views.py" in signup
21. return render(request, 'signup_success.html')
Exception Type: NameError at /signup/
Exception Value: global name 'response' is not defined
I'm not to sure if this is something to do with @csrf_protect and the template I am forwarding to is not the same template I came from. I changed this code to redirect() and still got the same error.
I know the imports are correct because if form.is_valid() fails the template renders fine.
Has any one else seen something like this before. I'm at a complete loss. I can post the template code but I have checked it through another view and it renders fine.
Thanks in advance to anyone who takes there time to look at this :)
Regards Joe
response. – Martijn Pieters Nov 22 '12 at 13:03