{% extends "app/plugins/templates/base.html" %} {% load bootstrap_extras %} {% block content %}

Welcome to Cloud Import!

Instructions
On this screen, you will be able to configure everything that is necessary for your different platforms.
You might need to set up a server URL, an authentication token or something else. If so, this is the place!

Platforms

{% csrf_token %} {% regroup form by field.group as field_groups %} {% for field_group in field_groups %}

{{field_group.grouper}}

{% for field in field_group.list %}
{{ field|with_class:'form-control' }} {% if field.errors %} {{ field.errors|join:'
' }}
{% elif field.help_text %} {{ field.help_text }} {% endif %}
{% endfor %} {% endfor %}
{% endblock %}