[Answered ]-Django forms – getting django to build the form you want

2👍

The suggested method will be to use a template like this:

<form action="/contact/" method="post">
    {% for field in form %}
        <div class="fieldWrapper">
            {{ field.errors }}
            {{ field.label_tag }}: {{ field }}
        </div>
    {% endfor %}
    <p><input type="submit" value="Send message" /></p>
</form>

You can conditionally override specific fields using {{ if field.my_property }}.

👤Udi

Leave a comment