{% extends 'generic/_base.html' %} {% load form_helpers %} {% block title %}Setup Wizard — Step 2 of 4{% endblock %} {% block content %}
{% csrf_token %}
Step 2: Connect Configuration
{% if form.non_field_errors %} {% endif %}

{% if is_local %} Configure the Zabbix credentials for the local sync backend. The NetBox URL and API token are auto-configured from the service account created in Step 1. {% else %} Configure the NetBox and Zabbix credentials that the webserver will use. {% endif %}

NetBox
{% render_field form.netbox_url %} {% if not is_local %} {% render_field form.netbox_token %} {% endif %}
Zabbix
{% render_field form.zabbix_url %}
{% for radio in form.zabbix_auth_type %} {% endfor %}
{% if form.zabbix_auth_type.help_text %}
{{ form.zabbix_auth_type.help_text }}
{% endif %}
{% render_field form.zabbix_user %} {% render_field form.zabbix_password %}
Back
{% endblock content %}