{% extends './dhcpserver/base.html' %} {% load i18n %} {% load netbox_dhcp %} {% load plugins %} {% block content %}
{% trans "DHCP Server" %}
{% include './inc/name_description_fields.html' %} {% if object.dhcp_cluster %} {% endif %} {% if object.device %} {% elif object.virtual_machine %} {% endif %}
{% trans "Status" %} {% badge object.get_status_display bg_color=object.get_status_color %}
{% trans "DHCP Cluster" %} {{ object.dhcp_cluster|linkify|placeholder }}
{% trans "Device" %} {{ object.device|linkify|placeholder }}
{% trans "Interfaces" %} {% for interface in object.device_interfaces.all %} {% endfor %}
{{ interface|linkify }}
{% trans "Virtual Machine" %} {{ object.virtual_machine|linkify|placeholder }}
{% trans "Interfaces" %} {% for interface in object.virtual_machine_interfaces.all %} {% endfor %}
{{ interface|linkify }}
{% trans "Configuration" %}
{% trans "Server DUID" %} {{ object.server_id|placeholder }}
{% trans "Host Reservation Identifiers" %} {% for identifier in object.host_reservation_identifiers %} {{ identifier }}{{ " " }} {% endfor %}
{% trans "Echo Client ID" %} {% null_checkmark object.echo_client_id %}
{% trans "Relay Supplied Options" %} {% for option in object.relay_supplied_options %} {{ option }}{{ " " }} {% endfor %}
{% trans "Decline Probation Period" %} {{ object.decline_probation_period|placeholder }}
{% include './inc/bootp_card.html' %} {% include './inc/lifetime_card.html' %} {% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/comments.html' %} {% plugin_left_page object %}
{% include './inc/lease_card.html' %} {% include './inc/ddns_update_card.html' %} {% include 'inc/panels/tags.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}