| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- {% 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 }}</a> ({{ device.device_type.u_height }}U)</span>
- </td>
- </tr>
- <tr>
- <td>Serial</td>
- <td>
- {% if device.serial %}
- <span>{{ device.serial }}</span>
- {% else %}
- <span class="text-muted">Not defined</span>
- {% endif %}
- </td>
- </tr>
- <tr>
- <td>Created</td>
- <td>{{ device.created }}</td>
- </tr>
- <tr>
- <td>Last Updated</td>
- <td>{{ device.last_updated }}</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="{% url 'dcim:device_list' %}?role={{ device.device_role.slug }}">{{ device.device_role }}</a>
- </td>
- </tr>
- <tr>
- <td>Platform</td>
- <td>
- {% if device.platform %}
- <span>{{ device.platform }}</span>
- {% else %}
- <span class="text-warning">Not assigned</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">Not defined</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">Not defined</span>
- {% endif %}
- </td>
- </tr>
- </table>
- </div>
- {% 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>
- {% else %}
- <div class="panel-body text-muted">
- None found
- </div>
- {% endif %}
- {% if perms.ipam.add_ipaddress %}
- <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 %}
- </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 %}
- {% if not device.device_type.is_pdu %}
- <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>
- {% endif %}
- {% 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
- </a>
- {% endif %}
- {% if perms.dcim.add_powerport and not device.device_type.is_pdu %}
- <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
- </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 }}</td>
- </tr>
- {% endfor %}
- </table>
- {% else %}
- <div class="panel-body text-muted">None found</div>
- {% endif %}
- </div>
- </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>
- <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">
- <div class="row">
- <div class="col-md-6">
- {% if device_bays and perms.dcim.delete_devicebay %}
- <button type="submit" class="btn btn-xs btn-danger">
- <span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete Selected
- </button>
- {% endif %}
- </div>
- <div class="col-md-6 text-right">
- {% if perms.dcim.add_devicebay %}
- <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 bay
- </a>
- {% endif %}
- </div>
- </div>
- </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" action="{% url 'dcim:interface_bulk_delete' pk=device.pk %}">
- {% csrf_token %}
- {% endif %}
- <div class="panel panel-default">
- <div class="panel-heading">
- <strong>Interfaces</strong>
- </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">
- <div class="row">
- <div class="col-md-6">
- {% if interfaces and perms.dcim.delete_interface %}
- <button type="submit" class="btn btn-xs btn-danger">
- <span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete Selected
- </button>
- {% endif %}
- </div>
- <div class="col-md-6 text-right">
- {% if perms.dcim.add_interface %}
- <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 interface
- </a>
- {% endif %}
- </div>
- </div>
- </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>
- <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">
- <div class="row">
- <div class="col-md-6">
- {% if cs_ports and perms.dcim.delete_consoleserverport %}
- <button type="submit" class="btn btn-xs btn-danger">
- <span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete Selected
- </button>
- {% endif %}
- </div>
- <div class="col-md-6 text-right">
- {% if perms.dcim.add_consoleserverport %}
- <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>
- </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>
- <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">
- <div class="row">
- <div class="col-md-6">
- {% if power_outlets and perms.dcim.delete_poweroutlet %}
- <button type="submit" class="btn btn-xs btn-danger">
- <span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete Selected
- </button>
- {% endif %}
- </div>
- <div class="col-md-6 text-right">
- {% if perms.dcim.add_poweroutlet %}
- <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>
- </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), "/api/dcim/console-ports/");
- });
- $(".powerport-toggle").click(function() {
- return toggleConnection($(this), "/api/dcim/power-ports/");
- });
- $(".interface-toggle").click(function() {
- return toggleConnection($(this), "/api/dcim/interface-connections/");
- });
- </script>
- <script src="{% static 'js/graphs.js' %}"></script>
- <script src="{% static 'js/secrets.js' %}"></script>
- {% endblock %}
|