I have received a few recommendation to use django-crispy-forms for creating forms in Django.
I have been looking for a couple of hours into the documentation and can't figure out a way how to spread the form fields over two columns.
Looking at this example here
helper = FormHelper()
helper.form_class = 'form-horizontal'
helper.layout = Layout(
Field('text_input', css_class='input-xlarge'),
Field('textarea', rows="3", css_class='input-xlarge'),
'radio_buttons',
...
)
I can see how the sequence of appearance can be setup. But the layout is still no different then a plain {{ form.as_p }}. I hope I am missing here something otherwise there is little use in using this add-on?