Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
3  
Did you perhaps change the code and not restart your server? The traceback shows a line completely devoid of response. – Martijn Pieters Nov 22 '12 at 13:03
@MartijnPieters arghhh! Thank you. I can't believe it was that. I need to lookup what requires a restart and what doesn't... I've been looking at that problem far to long I guess. Cheers – Joe Doherty Nov 22 '12 at 13:13

closed as too localized by Martijn Pieters, Alasdair, Junuxx, Marcin, George Stocker Nov 22 '12 at 18:50

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.