How to custom the deform Form?

2019-04-11 23:31发布

问题:

When I use the default deform Form. It's not what I need.

How to custom it ?

For example, I need this:

firstname:[_______]  lastname:[_______]
*username: [____________________] alink

where [__] represent normal html input.

Should rewrite the template?

回答1:

This is a css issue, to provide a custom CSS class to a deform input you need to use the following:

text_input = deform.widget.TextInputWidget(
    css_class='yourdivnamehere')

Then inside deform you can:

first_name = colander.SchemaNode(colander.String(),
            widget = text_input)