.. `layouts`: ======= Layouts ======= Bulma Layout objects ~~~~~~~~~~~~~~~~~~~~ The layout objects below are either bulma specific or have been modified to support bulma. The complete list of all layout objects can be found `here`_. .. _here: https://django-crispy-forms.readthedocs.io/en/latest/layouts.html#universal-layout-objects These ones live under module ``crispy_bulma.layouts``. - **Button**: Creates a button:: Button('Delete', css_class='is-danger') Renders to:: - **Submit**: Used to create a submit button. First parameter is the ``name`` attribute of the button, second parameter is the ``value`` attribute:: Submit('search', 'SEARCH') Renders to:: - **Hidden**: Used to create a hidden input:: Hidden('name', 'value') - **Reset**: Used to create a reset input:: Reset('name', 'value') - **FormGroup**: It wraps fields in a ``