{% extends 'generic/object.html' %} {% load helpers %} {% block content %}
DHCP Server
Name {{ object.name }}
Hostname / IP {{ object.hostname }}
Port {{ object.port }}
Protocol {% if object.use_https %}HTTPS{% else %}HTTP{% endif %}
API Key {% if object.api_key %}(configured){% else %}None{% endif %}
Verify SSL {% if object.verify_ssl %}{% else %}{% endif %}
Base URL {{ object.base_url }}
Sync Standalone Scopes {% if object.sync_standalone_scopes %}{% else %}{% endif %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}
Actions
{% csrf_token %} Immediately pull data from this server

Import from Server One-time import of scopes, failovers, and option values
{% if failover_table.rows %}
Failover Relationships
{% include 'inc/table.html' with table=failover_table %}
{% include 'inc/paginator.html' with paginator=failover_table.paginator page=failover_table.page %}
{% endif %} {% if scope_table.rows %}
Associated Scopes
{% include 'inc/table.html' with table=scope_table %}
{% include 'inc/paginator.html' with paginator=scope_table.paginator page=scope_table.page %}
{% endif %} {% endblock %}