Formset

Wrap a group of form tags to set them all to the same formset.


Usage

Each form tag needs to know which formset it is handling. As a convenience, rather than re-specifying the same formset parameter over and over, we can use an enclosing {{ form:set }} tag pair to apply it automatically.

{{ form:set is="contact" }}

    {{ if {form:errors} }}
      {{ form:errors }}...{{ /form:errors }}
    {{ /if }}

    {{ if {form:success} }}...{{ /if }}

    {{ form:create }}...{{ /form:create }}

{{ /form:set }}

In this example, if we didn’t use the form:set wrapper tag, we would need to add in="contact" to each of the form:something tags.


Parameters

in|is|formset

string

The name of the formset to use. You can use in, is, or formset. Whichever feels more natural to you.

Last modified on April 17, 2016