2021-03-02 15:58:33 -05:00
|
|
|
{% extends 'generic/object.html' %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% load buttons %}
|
|
|
|
{% load static %}
|
|
|
|
{% load helpers %}
|
|
|
|
{% load custom_links %}
|
|
|
|
{% load plugins %}
|
|
|
|
|
2021-03-02 15:58:33 -05:00
|
|
|
{% block breadcrumbs %}
|
|
|
|
<li><a href="{% url 'dcim:device_list' %}">Devices</a></li>
|
|
|
|
<li><a href="{% url 'dcim:device_list' %}?site={{ object.site.slug }}">{{ object.site }}</a></li>
|
|
|
|
{% if object.parent_bay %}
|
|
|
|
<li><a href="{% url 'dcim:device' pk=object.parent_bay.device.pk %}">{{ object.parent_bay.device }}</a></li>
|
|
|
|
<li>{{ object.parent_bay }}</li>
|
|
|
|
{% endif %}
|
|
|
|
<li>{{ object }}</li>
|
|
|
|
{% endblock %}
|
2020-11-13 15:00:12 -05:00
|
|
|
|
2021-03-02 15:58:33 -05:00
|
|
|
{% block buttons %}
|
|
|
|
{% if perms.dcim.change_device %}
|
|
|
|
<div class="btn-group">
|
|
|
|
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
|
<span class="mdi mdi-plus-thick" aria-hidden="true"></span> Add Components <span class="caret"></span>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
{% if perms.dcim.add_consoleport %}
|
|
|
|
<li><a href="{% url 'dcim:consoleport_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_consoleports' pk=object.pk %}">Console Ports</a></li>
|
2020-11-13 15:00:12 -05:00
|
|
|
{% endif %}
|
2021-03-02 15:58:33 -05:00
|
|
|
{% if perms.dcim.add_consoleserverport %}
|
|
|
|
<li><a href="{% url 'dcim:consoleserverport_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_consoleserverports' pk=object.pk %}">Console Server Ports</a></li>
|
2020-11-13 15:00:12 -05:00
|
|
|
{% endif %}
|
2021-03-02 15:58:33 -05:00
|
|
|
{% if perms.dcim.add_powerport %}
|
|
|
|
<li><a href="{% url 'dcim:powerport_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_powerports' pk=object.pk %}">Power Ports</a></li>
|
2020-11-13 15:00:12 -05:00
|
|
|
{% endif %}
|
2021-03-02 15:58:33 -05:00
|
|
|
{% if perms.dcim.add_poweroutlet %}
|
|
|
|
<li><a href="{% url 'dcim:poweroutlet_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_poweroutlets' pk=object.pk %}">Power Outlets</a></li>
|
2020-11-13 15:00:12 -05:00
|
|
|
{% endif %}
|
2021-03-02 15:58:33 -05:00
|
|
|
{% if perms.dcim.add_interface %}
|
|
|
|
<li><a href="{% url 'dcim:interface_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_interfaces' pk=object.pk %}">Interfaces</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% if perms.dcim.add_frontport %}
|
|
|
|
<li><a href="{% url 'dcim:frontport_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_frontports' pk=object.pk %}">Front Ports</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% if perms.dcim.add_rearport %}
|
|
|
|
<li><a href="{% url 'dcim:rearport_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_rearports' pk=object.pk %}">Rear Ports</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% if perms.dcim.add_devicebay %}
|
|
|
|
<li><a href="{% url 'dcim:devicebay_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_devicebays' pk=object.pk %}">Device Bays</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% if perms.dcim.add_inventoryitem %}
|
|
|
|
<li><a href="{% url 'dcim:inventoryitem_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_inventory' pk=object.pk %}">Inventory Items</a></li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
2020-11-13 15:00:12 -05:00
|
|
|
</div>
|
2021-03-02 15:58:33 -05:00
|
|
|
{% endif %}
|
|
|
|
{% if perms.dcim.add_device %}
|
|
|
|
{% clone_button object %}
|
|
|
|
{% endif %}
|
|
|
|
{% if perms.dcim.change_device %}
|
|
|
|
{% edit_button object %}
|
|
|
|
{% endif %}
|
|
|
|
{% if perms.dcim.delete_device %}
|
|
|
|
{% delete_button object %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block tabs %}
|
2020-11-13 15:00:12 -05:00
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
<li role="presentation" {% if active_tab == 'device' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device' pk=object.pk %}">Device</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
2021-01-25 14:29:03 -05:00
|
|
|
{% with interface_count=object.vc_interfaces.count %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% if interface_count %}
|
|
|
|
<li role="presentation" {% if active_tab == 'interfaces' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_interfaces' pk=object.pk %}">Interfaces {% badge interface_count %}</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% with frontport_count=object.frontports.count %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% if frontport_count %}
|
|
|
|
<li role="presentation" {% if active_tab == 'front-ports' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_frontports' pk=object.pk %}">Front Ports {% badge frontport_count %}</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% with rearport_count=object.rearports.count %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% if rearport_count %}
|
|
|
|
<li role="presentation" {% if active_tab == 'rear-ports' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_rearports' pk=object.pk %}">Rear Ports {% badge rearport_count %}</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% with consoleport_count=object.consoleports.count %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% if consoleport_count %}
|
|
|
|
<li role="presentation" {% if active_tab == 'console-ports' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_consoleports' pk=object.pk %}">Console Ports {% badge consoleport_count %}</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% with consoleserverport_count=object.consoleserverports.count %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% if consoleserverport_count %}
|
|
|
|
<li role="presentation" {% if active_tab == 'console-server-ports' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_consoleserverports' pk=object.pk %}">Console Server Ports {% badge consoleserverport_count %}</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% with powerport_count=object.powerports.count %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% if powerport_count %}
|
|
|
|
<li role="presentation" {% if active_tab == 'power-ports' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_powerports' pk=object.pk %}">Power Ports {% badge powerport_count %}</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% with poweroutlet_count=object.poweroutlets.count %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% if poweroutlet_count %}
|
|
|
|
<li role="presentation" {% if active_tab == 'power-outlets' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_poweroutlets' pk=object.pk %}">Power Outlets {% badge poweroutlet_count %}</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% with devicebay_count=object.devicebays.count %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% if devicebay_count %}
|
|
|
|
<li role="presentation" {% if active_tab == 'device-bays' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_devicebays' pk=object.pk %}">Device Bays {% badge devicebay_count %}</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% with inventoryitem_count=object.inventoryitems.count %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% if inventoryitem_count %}
|
|
|
|
<li role="presentation" {% if active_tab == 'inventory' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_inventory' pk=object.pk %}">Inventory {% badge inventoryitem_count %}</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
{% if perms.dcim.napalm_read_device %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% if object.status != 'active' %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% include 'dcim/inc/device_napalm_tabs.html' with disabled_message='Device must be in active status' %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% elif not object.platform %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% include 'dcim/inc/device_napalm_tabs.html' with disabled_message='No platform assigned to this device' %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% elif not object.platform.napalm_driver %}
|
2020-11-13 15:00:12 -05:00
|
|
|
{% include 'dcim/inc/device_napalm_tabs.html' with disabled_message='No NAPALM driver assigned for this platform' %}
|
|
|
|
{% else %}
|
|
|
|
{% include 'dcim/inc/device_napalm_tabs.html' %}
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% if perms.extras.view_configcontext %}
|
|
|
|
<li role="presentation"{% if active_tab == 'config-context' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_configcontext' pk=object.pk %}">Config Context</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% if perms.extras.view_objectchange %}
|
|
|
|
<li role="presentation"{% if active_tab == 'changelog' %} class="active"{% endif %}>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{% url 'dcim:device_changelog' pk=object.pk %}">Change Log</a>
|
2020-11-13 15:00:12 -05:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|