views:

259

answers:

2

I have a BooleanField in a Django 1.2 form.

I'm setting for it default=True but it is still unchecked in the browser by default.

Googling for it shows that some people are using initial=True, but this breaks the code for me completely (unrecognized keyword "initial").

Any ideas?

A: 

try to manually set the checked property attrs={'checked':'checked'}

aviah