2020-06-25 11:00:25 -04:00
|
|
|
{% extends 'dcim/device_component.html' %}
|
|
|
|
{% load helpers %}
|
2020-06-25 13:27:01 -04:00
|
|
|
{% load plugins %}
|
2020-06-25 11:00:25 -04:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-6">
|
2021-03-13 11:16:29 -07:00
|
|
|
<div class="card">
|
|
|
|
<h5 class="card-header">
|
|
|
|
Console Port
|
|
|
|
</h5>
|
|
|
|
<div class="card-body">
|
|
|
|
<table class="table table-hover attr-table">
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Device</th>
|
|
|
|
<td>
|
|
|
|
<a href="{{ object.device.get_absolute_url }}">{{ object.device }}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Name</th>
|
2021-07-21 11:20:35 -04:00
|
|
|
<td>{{ object.name }}</td>
|
2021-03-13 11:16:29 -07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Label</th>
|
|
|
|
<td>{{ object.label|placeholder }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Type</th>
|
|
|
|
<td>{{ object.get_type_display }}</td>
|
|
|
|
</tr>
|
2021-03-17 22:02:43 -07:00
|
|
|
<tr>
|
|
|
|
<th scope="row">Speed</th>
|
|
|
|
<td>{{ object.get_speed_display }}</td>
|
|
|
|
</tr>
|
2021-03-13 11:16:29 -07:00
|
|
|
<tr>
|
|
|
|
<th scope="row">Description</th>
|
|
|
|
<td>{{ object.description|placeholder }}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2020-06-25 11:00:25 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-01 13:07:25 -05:00
|
|
|
{% include 'inc/custom_fields_panel.html' %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all %}
|
|
|
|
{% plugin_left_page object %}
|
2020-06-25 11:00:25 -04:00
|
|
|
</div>
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-6">
|
2021-03-13 11:16:29 -07:00
|
|
|
<div class="card">
|
|
|
|
<h5 class="card-header">
|
|
|
|
Connection
|
|
|
|
</h5>
|
|
|
|
<div class="card-body">
|
|
|
|
{% if object.mark_connected %}
|
|
|
|
<span class="text-success"><i class="mdi mdi-check-bold"></i></span> Marked as connected
|
|
|
|
{% elif object.cable %}
|
|
|
|
<table class="table table-hover attr-table">
|
2020-10-05 13:23:55 -04:00
|
|
|
<tr>
|
2021-03-13 11:16:29 -07:00
|
|
|
<th scope="row">Cable</th>
|
2020-10-05 13:23:55 -04:00
|
|
|
<td>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{{ object.cable.get_absolute_url }}">{{ object.cable }}</a>
|
2021-04-18 16:42:28 -07:00
|
|
|
<a href="{% url 'dcim:consoleport_trace' pk=object.pk %}" class="btn btn-primary btn-sm lh-1" title="Trace">
|
2020-11-06 14:33:20 -05:00
|
|
|
<i class="mdi mdi-transit-connection-variant" aria-hidden="true"></i>
|
2020-10-05 13:23:55 -04:00
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2020-11-19 11:29:18 -05:00
|
|
|
{% if object.connected_endpoint %}
|
2020-06-25 11:00:25 -04:00
|
|
|
<tr>
|
2021-03-13 11:16:29 -07:00
|
|
|
<th scope="row">Device</th>
|
2020-06-25 11:00:25 -04:00
|
|
|
<td>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{{ object.connected_endpoint.device.get_absolute_url }}">{{ object.connected_endpoint.device }}</a>
|
2020-06-25 11:00:25 -04:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-03-13 11:16:29 -07:00
|
|
|
<th scope="row">Name</th>
|
2020-06-25 11:00:25 -04:00
|
|
|
<td>
|
2020-11-19 11:29:18 -05:00
|
|
|
<a href="{{ object.connected_endpoint.get_absolute_url }}">{{ object.connected_endpoint.name }}</a>
|
2020-06-25 11:00:25 -04:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-03-13 11:16:29 -07:00
|
|
|
<th scope="row">Type</th>
|
2020-11-19 11:29:18 -05:00
|
|
|
<td>{{ object.connected_endpoint.get_type_display|placeholder }}</td>
|
2020-06-25 11:00:25 -04:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-03-13 11:16:29 -07:00
|
|
|
<th scope="row">Description</th>
|
2020-11-19 11:29:18 -05:00
|
|
|
<td>{{ object.connected_endpoint.description|placeholder }}</td>
|
2020-06-25 11:00:25 -04:00
|
|
|
</tr>
|
2020-10-05 13:23:55 -04:00
|
|
|
<tr>
|
2021-03-13 11:16:29 -07:00
|
|
|
<th scope="row">Path Status</th>
|
2020-10-05 13:23:55 -04:00
|
|
|
<td>
|
2020-11-19 11:29:18 -05:00
|
|
|
{% if object.path.is_active %}
|
2021-04-18 16:42:28 -07:00
|
|
|
<span class="badge bg-success">Reachable</span>
|
2020-10-05 13:23:55 -04:00
|
|
|
{% else %}
|
2021-04-18 16:42:28 -07:00
|
|
|
<span class="badge bg-danger">Not Reachable</span>
|
2020-10-05 13:23:55 -04:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
2020-06-25 11:00:25 -04:00
|
|
|
{% endif %}
|
|
|
|
</table>
|
|
|
|
{% else %}
|
2021-03-13 11:16:29 -07:00
|
|
|
<div class="text-muted">
|
|
|
|
Not Connected
|
2020-08-13 11:14:33 -04:00
|
|
|
{% if perms.dcim.add_cable %}
|
2021-04-18 16:42:28 -07:00
|
|
|
<div class="dropdown float-end">
|
2021-03-13 11:16:29 -07:00
|
|
|
<button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
|
2020-11-06 14:49:14 -05:00
|
|
|
<span class="mdi mdi-ethernet-cable" aria-hidden="true"></span> Connect
|
2020-08-13 11:14:33 -04:00
|
|
|
</button>
|
2021-04-18 16:42:28 -07:00
|
|
|
<ul class="dropdown-menu dropdown-menu-end">
|
2021-03-13 11:16:29 -07:00
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
class="dropdown-item"
|
|
|
|
href="{% url 'dcim:consoleport_connect' termination_a_id=object.pk termination_b_type='console-server-port' %}?return_url={{ object.get_absolute_url }}"
|
|
|
|
>
|
|
|
|
Console Server Port
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
class="dropdown-item"
|
|
|
|
href="{% url 'dcim:consoleport_connect' termination_a_id=object.pk termination_b_type='front-port' %}?return_url={{ object.get_absolute_url }}"
|
|
|
|
>
|
|
|
|
Front Port
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
class="dropdown-item"
|
|
|
|
href="{% url 'dcim:consoleport_connect' termination_a_id=object.pk termination_b_type='rear-port' %}?return_url={{ object.get_absolute_url }}"
|
|
|
|
>
|
|
|
|
Rear Port
|
|
|
|
</a>
|
|
|
|
</li>
|
2020-08-13 11:14:33 -04:00
|
|
|
</ul>
|
2021-03-13 11:16:29 -07:00
|
|
|
</div>
|
2020-08-13 11:14:33 -04:00
|
|
|
{% endif %}
|
2020-06-25 11:00:25 -04:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-03-13 11:16:29 -07:00
|
|
|
</div>
|
2020-11-19 11:29:18 -05:00
|
|
|
{% plugin_right_page object %}
|
2020-06-25 13:27:01 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-12">
|
2020-11-19 11:29:18 -05:00
|
|
|
{% plugin_full_width_page object %}
|
2020-06-25 11:00:25 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|