{% extends './dhcpserver/base.html' %}
{% load i18n %}
{% load netbox_dhcp %}
{% load plugins %}
{% block content %}
{% include './inc/name_description_fields.html' %}
| {% trans "Status" %} |
{% badge object.get_status_display bg_color=object.get_status_color %} |
{% if object.dhcp_cluster %}
| {% trans "DHCP Cluster" %} |
{{ object.dhcp_cluster|linkify|placeholder }} |
{% endif %}
{% if object.device %}
| {% trans "Device" %} |
{{ object.device|linkify|placeholder }} |
| {% trans "Interfaces" %} |
{% for interface in object.device_interfaces.all %}
| {{ interface|linkify }} |
{% endfor %}
|
{% elif object.virtual_machine %}
| {% trans "Virtual Machine" %} |
{{ object.virtual_machine|linkify|placeholder }} |
| {% trans "Interfaces" %} |
{% for interface in object.virtual_machine_interfaces.all %}
| {{ interface|linkify }} |
{% endfor %}
|
{% endif %}
| {% 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 %}