how to know if checkbox is checked (True, 1) having just the {{ form.checkbox }} form-tag?
activo is True, 1 in db.
my template is:
{{ form.activo }}
RESULTS:
<input id="id_activo" type="checkbox" name="activo" checked="checked"/>
{{ form.activo.data }}
RESULTS:
False
{{ form.activo.value }}
RESULTS:
""
No 1 or True's :S
Any hint is apreciated =')