{% extends 'base/layout.html' %} {% load i18n %} {% load static %} {% block title %} {% if object %} Edit {{ object.name }} {% else %} Add WhatsUp Gold Connection {% endif %} {% endblock %} {% block content %}

{% if object %} Edit Connection: {{ object.name }} {% else %} Add WhatsUp Gold Connection {% endif %}

Connection Settings
{% csrf_token %}
{{ form.name }} {% if form.name.help_text %}
{{ form.name.help_text }}
{% endif %} {% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.is_active }}
{{ form.host }} {% if form.host.help_text %}
{{ form.host.help_text }}
{% endif %} {% if form.host.errors %}
{{ form.host.errors }}
{% endif %}
{{ form.port }} {% if form.port.help_text %}
{{ form.port.help_text }}
{% endif %} {% if form.port.errors %}
{{ form.port.errors }}
{% endif %}
{{ form.username }} {% if form.username.help_text %}
{{ form.username.help_text }}
{% endif %} {% if form.username.errors %}
{{ form.username.errors }}
{% endif %}
{{ form.password }} {% if form.password.help_text %}
{{ form.password.help_text }}
{% endif %} {% if form.password.errors %}
{{ form.password.errors }}
{% endif %}
{{ form.use_ssl }}
{% if form.use_ssl.help_text %}
{{ form.use_ssl.help_text }}
{% endif %}
{{ form.verify_ssl }}
{% if form.verify_ssl.help_text %}
{{ form.verify_ssl.help_text }}
{% endif %}
{{ form.sync_interval_minutes }} {% if form.sync_interval_minutes.help_text %}
{{ form.sync_interval_minutes.help_text }}
{% endif %} {% if form.sync_interval_minutes.errors %}
{{ form.sync_interval_minutes.errors }}
{% endif %}
{{ form.default_device_role }} {% if form.default_device_role.help_text %}
{{ form.default_device_role.help_text }}
{% endif %} {% if form.default_device_role.errors %}
{{ form.default_device_role.errors }}
{% endif %}
{{ form.auto_create_sites }}
{% if form.auto_create_sites.help_text %}
{{ form.auto_create_sites.help_text }}
{% endif %}
{{ form.auto_create_device_types }}
{% if form.auto_create_device_types.help_text %}
{{ form.auto_create_device_types.help_text }}
{% endif %}
{{ form.test_connection }}
{% if form.test_connection.help_text %}
{{ form.test_connection.help_text }}
{% endif %} {% if form.test_connection.errors %}
{{ form.test_connection.errors }}
{% endif %}
Cancel {% if object.pk %} View Details {% endif %}
{% endblock %}