django-bootstrap-form
django-bootstrap-form copied to clipboard
Support for inline checkboxes
I don't currently see a way for inline checkboxes:
- http://getbootstrap.com/css/#forms-controls
Any way we can get that support added. Also, allowing the ability to pass a class to the top level of the form group (when the class "form-group" is) would help our styling + js functionality immensely!
- https://github.com/tzangms/django-bootstrap-form/blob/master/bootstrapform/templates/bootstrapform/field.html#L3
And .radio-inline
I need it too.
I do it very simple:
- coping the
\Python33\Lib\site-packages\bootstrapform\templates\bootstrapform\
to my project templates - overwriting
<div class="radio">
tag to<div class="radio-inline">
infield.html
template
Now all radio groups are inline - thats ok for my project.