Is there a widget in Django 1.0.2 to render a models.BooleanField as two radio buttons instead of a checkbox?
|
|
||||
|
|
|
You could do this by overriding the field definition in the ModelForm:
|
|||||||||||
|
|
Django 1.2 has added the "widgets" Meta option for modelforms: In your models.py, specify the "choices" for your boolean field:
Then, in your forms.py, specify the RadioSelect widget for that field:
I've tested this with a SQLite db, which also stores booleans as 1/0 values, and it seems to work fine without a custom coerce function. |
|||
|
|
|
Modifying Daniel Roseman's answer a bit, you could fix the bool("False") = True problem succinctly by just using ints instead:
|
||||
|
Here's a quick & dirty coerce function using lambda, that gets around the "False" -> True problem:
|
|||
|
|
|
Same as @eternicode's answer, but without modifying the model:
I think this only works in Django 1.2+ |
|||
|
|
|
Also remember that MySQL uses tinyint for Boolean, so True/False are actually 1/0. I used this coerce function:
|
||||
|
|
|
As there is problem in @Daniel Roseman answer, bool('False') --> True, so now i have combined two answers here to make one solution.
Now this will work :) |
|||
|
|
|
An other solution:
|
||||
|
|