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

Configure the NetBox and Zabbix credentials that the webserver will use.

NetBox
{% render_field form.netbox_url %} {% render_field form.netbox_token %}
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 %}