Example
This tag can be used both as a conditional and as the data itself.
{{ form:set is="contact" }}
{{ if {form:errors} }}
<p>Oops, here's what went wrong:</p>
<ul>
{{ form:errors }}
<li>{{ value }}</li>
{{ /form:errors }}
</ul>
{{ /if }}
{{ form:create }}
...
{{ /form:create }}
{{ /form:set }}
form:errors
is a Tag, not a variable. Wrap it with single braces when inside a conditional.
Parameters
handle|is|in|form|formset string
Specify the name of the form. Only required if you do not use the form:set
tag, or don't have a form
defined in the current context.
Variables
Variable | Type | Description |
---|---|---|
value |
string |
This tag contains a primitive array. In each iteration, the |