<:form path [noescape] [extra_args]:>
Creates an appropriate HTML <FORM> start tag.
Arguments are similar to the <:url:> (see section 5.1, page
IMPORTANT NOTE! This tag only generates the start HTML form tag, but not the closing </FORM> tag. Always remember to close your HTML forms with the raw HTML tag </form>.
The equivalent Python component code would be:
import templating.UrlBuilder print templating.UrlBuilder.form(path, extra_args_as_dict, noescape)