On Sat, 2008-11-15 at 15:28 +0100, Alfredo Alessandrini wrote:
> Hi,
> 
> I've this template:
> 
>             <input class="move_game" id="id_move" name="radio1"
> type="radio" checked />
>             <input class="move_game" id="id_draw" name="radio1" type="radio" 
> />
>             <input class="move_game" id="id_resign" name="radio1"
> type="radio"  />
> 
> 
> And this View:
> 
> class MoveGameForm(forms.Form):
>     resign = forms.BooleanField(required=False)
>     draw = forms.BooleanField(required=False)
>     move = forms.BooleanField(required=False)
> 
> 
> I'm writing the view, with:
> 
> ........
> ........
>  if form.is_valid():
>             draw = form.cleaned_data['move']
>             move = form.cleaned_data['draw']
>             resign = form.cleaned_data['resign']
>             if resign == 1:
>                 ............
> 
> but (if resign == 1) don't work...
> 
> where is the error?

Absolutely basic debugging practice if something isn't behaving as
expected is to print out the value to see what it actually contains (in
a debugger, or with print, or however takes your fancy).

Malcolm



--~--~---------~--~----~------------~-------~--~----~
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