On Tue, Oct 14, 2008 at 2:00 PM, Alfredo Alessandrini
<[EMAIL PROTECTED]>wrote:

>
> I've a new error :-) :
>
>  File "...../mysite/views.py", line 26, in setup_player
>    return render_to_response('player_form.html', {'form': form})
>
> UnboundLocalError: local variable 'form' referenced before assignment
>

That's a very clear error message.  You are using the variable form before
you have ever assigned it a value.  Look at the code, and you should be able
to figure out how to fix it.  Perhaps the exact fix given earlier in this
thread was not 100% correct; people aren't Python compilers and sometimes
miss details when giving advice.  There are also many many correct examples
out there of how to write views that deal with forms, take a look at them
and see how they differ from what you have.  Really, you can figure this out
yourself.

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to