mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
575 lines
27 KiB
HTML
575 lines
27 KiB
HTML
{% extends '_base.html' %}
|
|
{% load static from staticfiles %}
|
|
{% load render_table from django_tables2 %}
|
|
{% load helpers %}
|
|
|
|
{% block title %}{{ device }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'dcim/inc/_device_header.html' with active_tab='info' %}
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Device</strong>
|
|
</div>
|
|
<table class="table table-hover panel-body">
|
|
<tr>
|
|
<td>Tenant</td>
|
|
<td>
|
|
{% if device.tenant %}
|
|
<a href="{{ device.tenant.get_absolute_url }}">{{ device.tenant }}</a>
|
|
{% else %}
|
|
<span class="text-muted">None</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Site</td>
|
|
<td>
|
|
<a href="{% url 'dcim:site' slug=device.rack.site.slug %}">{{ device.rack.site }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Rack</td>
|
|
<td>
|
|
<span><a href="{% url 'dcim:rack' pk=device.rack.pk %}">{{ device.rack.name }}</a>{% if device.rack.facility_id %} ({{ device.rack.facility_id }}){% endif %}</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Position</td>
|
|
<td>
|
|
{% if device.parent_bay %}
|
|
{% with device.parent_bay.device as parent %}
|
|
<span>U{{ parent.position }} / {{ parent.get_face_display }}
|
|
(<a href="{{ parent.get_absolute_url }}">{{ parent }}</a> - {{ device.parent_bay.name }})</span>
|
|
{% endwith %}
|
|
{% elif device.position %}
|
|
<span>U{{ device.position }} / {{ device.get_face_display }}</span>
|
|
{% elif device.device_type.u_height %}
|
|
<span class="label label-warning">Not racked</span>
|
|
{% else %}
|
|
<span class="text-muted">N/A</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Device Type</td>
|
|
<td>
|
|
<span><a href="{% url 'dcim:devicetype' pk=device.device_type.pk %}">{{ device.device_type.full_name }}</a> ({{ device.device_type.u_height }}U)</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Serial Number</td>
|
|
<td>
|
|
{% if device.serial %}
|
|
<span>{{ device.serial }}</span>
|
|
{% else %}
|
|
<span class="text-muted">N/A</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Asset Tag</td>
|
|
<td>
|
|
{% if device.asset_tag %}
|
|
<span>{{ device.asset_tag }}</span>
|
|
{% else %}
|
|
<span class="text-muted">N/A</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Management</strong>
|
|
</div>
|
|
<table class="table table-hover panel-body">
|
|
<tr>
|
|
<td>Role</td>
|
|
<td>
|
|
<a href="{{ device.device_role.get_absolute_url }}">{{ device.device_role }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Platform</td>
|
|
<td>
|
|
{% if device.platform %}
|
|
<span>{{ device.platform }}</span>
|
|
{% else %}
|
|
<span class="text-muted">None</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Status</td>
|
|
<td>
|
|
{% if device.status %}
|
|
<span class="label label-success">{{ device.get_status_display }}</span>
|
|
{% else %}
|
|
<span class="label label-danger">{{ device.get_status_display }}</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Primary IPv4</td>
|
|
<td>
|
|
{% if device.primary_ip4 %}
|
|
<a href="{% url 'ipam:ipaddress' pk=device.primary_ip4.pk %}">{{ device.primary_ip4.address.ip }}</a>
|
|
{% if device.primary_ip4.nat_inside %}
|
|
<span>(NAT for {{ device.primary_ip4.nat_inside.address.ip }})</span>
|
|
{% elif device.primary_ip4.nat_outside %}
|
|
<span>(NAT: {{ device.primary_ip4.nat_outside.address.ip }})</span>
|
|
{% endif %}
|
|
{% else %}
|
|
<span class="text-muted">N/A</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Primary IPv6</td>
|
|
<td>
|
|
{% if device.primary_ip6 %}
|
|
<a href="{% url 'ipam:ipaddress' pk=device.primary_ip6.pk %}">{{ device.primary_ip6.address.ip }}</a>
|
|
{% if device.primary_ip6.nat_inside %}
|
|
<span>(NAT for {{ device.primary_ip6.nat_inside.address.ip }})</span>
|
|
{% elif device.primary_ip6.nat_outside %}
|
|
<span>(NAT: {{ device.primary_ip6.nat_outside.address.ip }})</span>
|
|
{% endif %}
|
|
{% else %}
|
|
<span class="text-muted">N/A</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% with device.get_custom_fields as custom_fields %}
|
|
{% include 'inc/custom_fields_panel.html' %}
|
|
{% endwith %}
|
|
{% if request.user.is_authenticated %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Secrets</strong>
|
|
</div>
|
|
{% if secrets %}
|
|
<table class="table table-hover panel-body">
|
|
{% for secret in secrets %}
|
|
{% include 'secrets/inc/secret_tr.html' %}
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<div class="panel-body text-muted">
|
|
None found
|
|
</div>
|
|
{% endif %}
|
|
{% if perms.secrets.add_secret %}
|
|
<form id="secret_form">
|
|
{% csrf_token %}
|
|
</form>
|
|
<div class="panel-footer text-right">
|
|
<a href="{% url 'dcim:device_addsecret' pk=device.pk %}" class="btn btn-xs btn-primary">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
|
|
Add secret
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>IP Addresses</strong>
|
|
</div>
|
|
{% if ip_addresses %}
|
|
<table class="table table-hover panel-body">
|
|
{% for ip in ip_addresses %}
|
|
{% include 'dcim/inc/_ipaddress.html' %}
|
|
{% endfor %}
|
|
</table>
|
|
{% elif interfaces or mgmt_interfaces %}
|
|
<div class="panel-body text-muted">
|
|
None assigned
|
|
</div>
|
|
{% else %}
|
|
<div class="panel-body">
|
|
<a href="{% url 'dcim:interface_add' pk=device.pk %}">Create an interface</a> to assign an IP.
|
|
</div>
|
|
{% endif %}
|
|
{% if perms.ipam.add_ipaddress %}
|
|
{% if interfaces or mgmt_interfaces %}
|
|
<div class="panel-footer text-right">
|
|
<a href="{% url 'dcim:ipaddress_assign' pk=device.pk %}" class="btn btn-xs btn-primary">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Assign IP address
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Critical Connections</strong>
|
|
</div>
|
|
<table class="table table-hover panel-body">
|
|
{% for iface in mgmt_interfaces %}
|
|
{% include 'dcim/inc/_interface.html' with icon='wrench' %}
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="5" class="alert-warning">
|
|
<i class="fa fa-fw fa-warning"></i> No management interfaces defined
|
|
{% if perms.dcim.add_interface %}
|
|
<a href="{% url 'dcim:interface_add' pk=device.pk %}?mgmt_only=1" class="btn btn-primary btn-xs pull-right"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% for cp in console_ports %}
|
|
{% include 'dcim/inc/_consoleport.html' %}
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="5" class="alert-warning">
|
|
<i class="fa fa-fw fa-warning"></i> No console ports defined
|
|
{% if perms.dcim.add_consoleport %}
|
|
<a href="{% url 'dcim:consoleport_add' pk=device.pk %}" class="btn btn-primary btn-xs pull-right"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% for pp in power_ports %}
|
|
{% include 'dcim/inc/_powerport.html' %}
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="5" class="alert-warning">
|
|
<i class="fa fa-fw fa-warning"></i> No power ports defined
|
|
{% if perms.dcim.add_powerport %}
|
|
<a href="{% url 'dcim:powerport_add' pk=device.pk %}" class="btn btn-primary btn-xs pull-right"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% if perms.dcim.add_interface or perms.dcim.add_consoleport or perms.dcim.add_powerport %}
|
|
<div class="panel-footer text-right">
|
|
{% if perms.dcim.add_interface %}
|
|
<a href="{% url 'dcim:interface_add' pk=device.pk %}?mgmt_only=1" class="btn btn-xs btn-primary">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add interface
|
|
</a>
|
|
{% endif %}
|
|
{% if perms.dcim.add_consoleport %}
|
|
<a href="{% url 'dcim:consoleport_add' pk=device.pk %}" class="btn btn-xs btn-primary">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add console port
|
|
</a>
|
|
{% endif %}
|
|
{% if perms.dcim.add_powerport %}
|
|
<a href="{% url 'dcim:powerport_add' pk=device.pk %}" class="btn btn-xs btn-primary">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add power port
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Comments</strong>
|
|
</div>
|
|
<div class="panel-body">
|
|
{% if device.comments %}
|
|
{{ device.comments|gfm }}
|
|
{% else %}
|
|
<span class="text-muted">None</span>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Related Devices</strong>
|
|
</div>
|
|
{% if related_devices %}
|
|
<table class="table table-hover panel-body">
|
|
{% for rd in related_devices %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url 'dcim:device' pk=rd.pk %}">{{ rd }}</a>
|
|
</td>
|
|
<td>
|
|
<a href="{% url 'dcim:rack' pk=rd.rack.pk %}">Rack {{ rd.rack }}</a>
|
|
</td>
|
|
<td>{{ rd.device_type.full_name }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<div class="panel-body text-muted">None found</div>
|
|
{% endif %}
|
|
</div>
|
|
{% include 'inc/created_updated.html' with obj=device %}
|
|
</div>
|
|
<div class="col-md-6">
|
|
{% if device_bays or device.device_type.is_parent_device %}
|
|
{% if perms.dcim.delete_devicebay %}
|
|
<form method="post" action="{% url 'dcim:devicebay_bulk_delete' pk=device.pk %}">
|
|
{% csrf_token %}
|
|
{% endif %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Device Bays</strong>
|
|
<div class="pull-right">
|
|
<button class="btn btn-default btn-xs toggle">
|
|
<span class="glyphicon glyphicon-unchecked" aria-hidden="true"></span> Select all
|
|
</button>
|
|
{% if perms.dcim.add_devicebay and device_bays|length > 10 %}
|
|
<a href="{% url 'dcim:devicebay_add' pk=device.pk %}" class="btn btn-primary btn-xs">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add device bays
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<table class="table table-hover panel-body">
|
|
{% for devicebay in device_bays %}
|
|
{% include 'dcim/inc/_devicebay.html' with selectable=True %}
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="4">No device bays defined</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% if perms.dcim.add_devicebay or perms.dcim.delete_devicebay %}
|
|
<div class="panel-footer">
|
|
{% if device_bays and perms.dcim.delete_devicebay %}
|
|
<button type="submit" class="btn btn-danger btn-xs">
|
|
<span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete selected
|
|
</button>
|
|
{% endif %}
|
|
{% if perms.dcim.add_devicebay %}
|
|
<div class="pull-right">
|
|
<a href="{% url 'dcim:devicebay_add' pk=device.pk %}" class="btn btn-primary btn-xs">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add device bays
|
|
</a>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if perms.dcim.delete_devicebay %}
|
|
</form>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if interfaces or device.device_type.is_network_device %}
|
|
{% if perms.dcim.delete_interface %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% endif %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Interfaces</strong>
|
|
<div class="pull-right">
|
|
<button class="btn btn-default btn-xs toggle">
|
|
<span class="glyphicon glyphicon-unchecked" aria-hidden="true"></span> Select all
|
|
</button>
|
|
{% if perms.dcim.add_interface and interfaces|length > 10 %}
|
|
<a href="{% url 'dcim:interface_add' pk=device.pk %}" class="btn btn-primary btn-xs">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add interfaces
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<table class="table table-hover panel-body">
|
|
{% for iface in interfaces %}
|
|
{% include 'dcim/inc/_interface.html' with selectable=True %}
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="4">No interfaces defined</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% if perms.dcim.add_interface or perms.dcim.delete_interface %}
|
|
<div class="panel-footer">
|
|
{% if interfaces and perms.dcim.change_interface %}
|
|
<button type="submit" name="_edit" formaction="{% url 'dcim:interface_bulk_edit' pk=device.pk %}" class="btn btn-warning btn-xs">
|
|
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span> Edit selected
|
|
</button>
|
|
{% endif %}
|
|
{% if interfaces and perms.dcim.delete_interface %}
|
|
<button type="submit" name="_delete" formaction="{% url 'dcim:interface_bulk_delete' pk=device.pk %}" class="btn btn-danger btn-xs">
|
|
<span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete selected
|
|
</button>
|
|
{% endif %}
|
|
{% if perms.dcim.add_interface %}
|
|
<div class="pull-right">
|
|
<a href="{% url 'dcim:interface_add' pk=device.pk %}" class="btn btn-primary btn-xs">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add interfaces
|
|
</a>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if perms.dcim.delete_interface %}
|
|
</form>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if cs_ports or device.device_type.is_console_server %}
|
|
{% if perms.dcim.delete_consoleserverport %}
|
|
<form method="post" action="{% url 'dcim:consoleserverport_bulk_delete' pk=device.pk %}">
|
|
{% csrf_token %}
|
|
{% endif %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Console Server Ports</strong>
|
|
<div class="pull-right">
|
|
<button class="btn btn-default btn-xs toggle">
|
|
<span class="glyphicon glyphicon-unchecked" aria-hidden="true"></span> Select all
|
|
</button>
|
|
{% if perms.dcim.add_consoleserverport and cs_ports|length > 10 %}
|
|
<a href="{% url 'dcim:consoleserverport_add' pk=device.pk %}" class="btn btn-primary btn-xs">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add console server ports
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<table class="table table-hover panel-body">
|
|
{% for csp in cs_ports %}
|
|
{% include 'dcim/inc/_consoleserverport.html' with selectable=True %}
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="4">No console server ports defined</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% if perms.dcim.add_consoleserverport or perms.dcim.delete_consoleserverport %}
|
|
<div class="panel-footer">
|
|
{% if cs_ports and perms.dcim.delete_consoleserverport %}
|
|
<button type="submit" class="btn btn-danger btn-xs">
|
|
<span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete selected
|
|
</button>
|
|
{% endif %}
|
|
{% if perms.dcim.add_consoleserverport %}
|
|
<div class="pull-right">
|
|
<a href="{% url 'dcim:consoleserverport_add' pk=device.pk %}" class="btn btn-primary btn-xs">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add console server ports
|
|
</a>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if perms.dcim.delete_consoleserverport %}
|
|
</form>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if power_outlets or device.device_type.is_pdu %}
|
|
{% if perms.dcim.delete_poweroutlet %}
|
|
<form method="post" action="{% url 'dcim:poweroutlet_bulk_delete' pk=device.pk %}">
|
|
{% csrf_token %}
|
|
{% endif %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Power Outlets</strong>
|
|
<div class="pull-right">
|
|
<button class="btn btn-default btn-xs toggle">
|
|
<span class="glyphicon glyphicon-unchecked" aria-hidden="true"></span> Select all
|
|
</button>
|
|
{% if perms.dcim.add_poweroutlet and power_outlets|length > 10 %}
|
|
<a href="{% url 'dcim:poweroutlet_add' pk=device.pk %}" class="btn btn-primary btn-xs">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add power outlets
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<table class="table table-hover panel-body">
|
|
{% for po in power_outlets %}
|
|
{% include 'dcim/inc/_poweroutlet.html' with selectable=True %}
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="4">No power outlets defined</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% if perms.dcim.add_poweroutlet or perms.dcim.delete_poweroutlet %}
|
|
<div class="panel-footer">
|
|
{% if power_outlets and perms.dcim.delete_poweroutlet %}
|
|
<button type="submit" class="btn btn-danger btn-xs">
|
|
<span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete selected
|
|
</button>
|
|
{% endif %}
|
|
{% if perms.dcim.add_poweroutlet %}
|
|
<div class="pull-right">
|
|
<a href="{% url 'dcim:poweroutlet_add' pk=device.pk %}" class="btn btn-primary btn-xs">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add power outlets
|
|
</a>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if perms.dcim.delete_poweroutlet %}
|
|
</form>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% include 'inc/graphs_modal.html' %}
|
|
{% include 'secrets/inc/private_key_modal.html' %}
|
|
{% endblock %}
|
|
|
|
{% block javascript %}
|
|
<script type="text/javascript">
|
|
function toggleConnection(elem, api_url) {
|
|
if (elem.hasClass('connected')) {
|
|
$.ajax({
|
|
url: api_url + elem.attr('data') + "/",
|
|
method: 'PATCH',
|
|
dataType: 'json',
|
|
beforeSend: function(xhr, settings) {
|
|
xhr.setRequestHeader("X-CSRFToken", "{{ csrf_token }}");
|
|
},
|
|
data: {
|
|
'connection_status': 'False'
|
|
},
|
|
context: this,
|
|
success: function() {
|
|
elem.parents('tr').removeClass('success').addClass('info');
|
|
elem.removeClass('connected btn-warning').addClass('btn-success');
|
|
elem.attr('title', 'Mark connected');
|
|
elem.children('i').removeClass('glyphicon glyphicon-ban-circle').addClass('fa fa-plug')
|
|
}
|
|
});
|
|
} else {
|
|
$.ajax({
|
|
url: api_url + elem.attr('data') + "/",
|
|
method: 'PATCH',
|
|
dataType: 'json',
|
|
beforeSend: function(xhr, settings) {
|
|
xhr.setRequestHeader("X-CSRFToken", "{{ csrf_token }}");
|
|
},
|
|
data: {
|
|
'connection_status': 'True'
|
|
},
|
|
context: this,
|
|
success: function() {
|
|
elem.parents('tr').removeClass('info').addClass('success');
|
|
elem.removeClass('btn-success').addClass('connected btn-warning');
|
|
elem.attr('title', 'Mark disconnected');
|
|
elem.children('i').removeClass('fa fa-plug').addClass('glyphicon glyphicon-ban-circle')
|
|
}
|
|
});
|
|
}
|
|
return false;
|
|
}
|
|
$(".consoleport-toggle").click(function() {
|
|
return toggleConnection($(this), "/{{ settings.BASE_PATH }}api/dcim/console-ports/");
|
|
});
|
|
$(".powerport-toggle").click(function() {
|
|
return toggleConnection($(this), "/{{ settings.BASE_PATH }}api/dcim/power-ports/");
|
|
});
|
|
$(".interface-toggle").click(function() {
|
|
return toggleConnection($(this), "/{{ settings.BASE_PATH }}api/dcim/interface-connections/");
|
|
});
|
|
</script>
|
|
<script src="{% static 'js/graphs.js' %}"></script>
|
|
<script src="{% static 'js/secrets.js' %}"></script>
|
|
{% endblock %}
|