How to custom the deform Form?

2019-04-11 23:52发布

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条回答
Root(大扎)
2楼-- · 2019-04-12 00:11

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)
查看更多
登录 后发表回答