Answers for "form.as_p"

0

form.as_p

There are other output options though for the <label>/<input> pairs:

{{ form.as_table }} will render them as table cells wrapped in <tr> tags
{{ form.as_p }} will render them wrapped in <p> tags
{{ form.as_ul }} will render them wrapped in <li> tags

Note that you’ll have to provide the surrounding <table> or <ul> elements yourself.
Posted by: Guest on January-24-2022

Code answers related to "form.as_p"

Browse Popular Code Answers by Language