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

Optionally create the NetBox resources required for Zabbix synchronization. Existing resources will be skipped automatically.

{% render_field form.create_custom_fields %} {% render_field form.create_config_contexts %} {% render_field form.create_custom_links %} {% render_field form.create_sync_schedule %}
Preview
Custom Fields
    {% for cf in custom_fields %}
  • {{ cf.name }} ({{ cf.type }}) — {{ cf.description }}
  • {% endfor %}
Example Config Contexts
    {% for ctx in config_contexts %}
  • {{ ctx.name }} — {{ ctx.description }}
  • {% endfor %}
Custom Links (group: Zabbix)
{% if zabbix_base_url %}
    {% for cl in custom_links %}
  • {{ cl.name }} — {{ cl.link_url }}
  • {% endfor %}
{% else %}

Zabbix base URL not available yet — links will use the URL from the runner's connect config once configured.

{% endif %}
Back
{% endblock content %}