{% extends "goflow/base_site.html" %} {% load i18n admin_modify admin_static %} {% block extrahead %}{{ block.super }} {% endblock %} {% block content %}

Start application

This is a default form used by the generic application: You may use a suitable form by setting the form_class parameter in the urls.py file as follows:
	    (r'^my/appli/request/$',
	      'openflow.workflow.applications.start_application',
	      {'process_name':'newleave',
	      'form_class':MyForm,
	      'template':'mytemplate.html'})
	

The form must be a ModelForm that inherits from goflow.runtime.forms.StartForm.

You may also define a suitable template (the default is start_application.html) with the template parameter. {% if form.is_multipart %}

{% else %} {% endif %} {% csrf_token %} {% load apptools_lib %} {% form_ext form %}
{% endblock %}