{% extends 'base/layout.html' %} {% load i18n %} {% block title %}{% trans "Setup wizard" %}{% endblock %} {% block content %}

{% trans "Setup wizard" %}

{% trans "Bootstrap your cartography with a ready-to-use sector modeling bundle and sample data." %}
{% if permission_errors %}

{% trans "Missing permissions" %}

{% endif %} {% if result %}

{% trans "Bundle applied successfully" %}

{% blocktrans with site=result.site.name bundle=result.bundle_label %}Bundle “{{ bundle }}” applied to {{ site }}{% endblocktrans %} {% if result.site_created %}({% trans "site created" %}){% endif %}
{{ result.stats.domains }} {% trans "domains" %} {{ result.stats.processes }} {% trans "processes" %} {{ result.stats.applications }} {% trans "applications" %} {{ result.stats.flows }} {% trans "flows" %} {{ result.stats.vms }} {% trans "VMs" %} {{ result.stats.vlans }} {% trans "VLANs" %} {{ result.stats.prefixes }} {% trans "prefixes" %}
{% endif %}
{% csrf_token %}
1{% trans "Choose a modeling bundle" %}
{% for bundle in bundles %} {% endfor %}
2{% trans "Target facility" %}
{{ form.site_name.help_text }} {% if form.site_name.errors %}
{{ form.site_name.errors.0 }}
{% endif %}
3{% trans "Sample data" %}
{% trans "Without sample data, only the domain / process structure is created." %} {% if not option_perms.create_site %}
{% trans "You can only target an existing site (no permission to create sites)." %}
{% endif %}
{% endblock %}