{% extends "service/master.html"%} {% block title %}Create new service{% endblock %} {% block content %}

Create new service

Please make sure fields marked with a * are filled in.

{% if form.has_errors %}

Sorry, the following problems prevented your edits from being saved.

{% endif %}
New service
{{ form.name }}

The service name is used in creating the url for your service with your service appearing at {project-base-url}/{service-name}. See the section on services in the documentation for more details.


{{ form.plugin }}

The service type determines what kind of application will be made available at the service url. So, for example, if you choose a svn (subversion) type you will get a subversion repository, if you choose moin you will get a moinmoin wiki. For more information about the different types of service see the documentation or contact the service administrator.

Note that the type of service cannot be changed after the service has been created. If you would like a different type of service, simply create another service of a different type, and then delete the unwanted service.

{% if pluginFields %}
Service configuration {% for pluginField in form.plugin_fields %} {{ pluginField }}
{% endfor %}
{% endif %} Please check the form and then
{% endblock %}