Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Form rendering options in django

{% comment %}
Don’t forget that a form’s output does not include the surrounding <form> tags, or the form’s submit control.
You will have to provide these yourself.
{% endcomment %}

{{ 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
Source by docs.djangoproject.com #
 
PREVIOUS NEXT
Tagged: #Form #rendering #options #django
ADD COMMENT
Topic
Name
8+3 =