|
@@ -3,108 +3,124 @@
|
|
|
{% load plugins %}
|
|
{% load plugins %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
{% block breadcrumbs %}
|
|
|
- {{ block.super }}
|
|
|
|
|
- <li><a href="{% url 'dcim:device_frontports' pk=object.device.pk %}">Front Ports</a></li>
|
|
|
|
|
- <li>{{ object }}</li>
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <li class="breadcrumb-item"><a href="{% url 'dcim:device_frontports' pk=object.device.pk %}">Front Ports</a></li>
|
|
|
|
|
+ <li class="breadcrumb-item">{{ object }}</li>
|
|
|
{% endblock %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
{% block content %}
|
|
|
<div class="row">
|
|
<div class="row">
|
|
|
<div class="col-md-6">
|
|
<div class="col-md-6">
|
|
|
- <div class="panel panel-default">
|
|
|
|
|
- <div class="panel-heading">
|
|
|
|
|
- <strong>Front Port</strong>
|
|
|
|
|
|
|
+ <div class="card">
|
|
|
|
|
+ <h5 class="card-header">
|
|
|
|
|
+ Front 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>
|
|
|
|
|
+ <td>{{ object.name }}</td>
|
|
|
|
|
+ </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>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th scope="row">Rear Port</th>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <a href="{{ object.rear_port.get_absolute_url }}">{{ object.rear_port }}</a>
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th scope="row">Rear Port Position</th>
|
|
|
|
|
+ <td>{{ object.rear_port_position }}</td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th scope="row">Description</th>
|
|
|
|
|
+ <td>{{ object.description|placeholder }}</td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ </table>
|
|
|
</div>
|
|
</div>
|
|
|
- <table class="table table-hover panel-body attr-table">
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Device</td>
|
|
|
|
|
- <td>
|
|
|
|
|
- <a href="{{ object.device.get_absolute_url }}">{{ object.device }}</a>
|
|
|
|
|
- </td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Name</td>
|
|
|
|
|
- <td>{{ object.name }}</td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Label</td>
|
|
|
|
|
- <td>{{ object.label|placeholder }}</td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Type</td>
|
|
|
|
|
- <td>{{ object.get_type_display }}</td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Rear Port</td>
|
|
|
|
|
- <td>
|
|
|
|
|
- <a href="{{ object.rear_port.get_absolute_url }}">{{ object.rear_port }}</a>
|
|
|
|
|
- </td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Rear Port Position</td>
|
|
|
|
|
- <td>{{ object.rear_port_position }}</td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Description</td>
|
|
|
|
|
- <td>{{ object.description|placeholder }}</td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- </table>
|
|
|
|
|
</div>
|
|
</div>
|
|
|
{% include 'inc/custom_fields_panel.html' %}
|
|
{% include 'inc/custom_fields_panel.html' %}
|
|
|
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all %}
|
|
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all %}
|
|
|
{% plugin_left_page object %}
|
|
{% plugin_left_page object %}
|
|
|
</div>
|
|
</div>
|
|
|
<div class="col-md-6">
|
|
<div class="col-md-6">
|
|
|
- <div class="panel panel-default">
|
|
|
|
|
- <div class="panel-heading">
|
|
|
|
|
- <strong>Connection</strong>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="card">
|
|
|
|
|
+ <h5 class="card-header">
|
|
|
|
|
+ Connection
|
|
|
|
|
+ </h5>
|
|
|
|
|
+ <div class="card-body">
|
|
|
{% if object.mark_connected %}
|
|
{% if object.mark_connected %}
|
|
|
- <div class="panel-body text-muted">
|
|
|
|
|
- <span class="text-success"><i class="mdi mdi-check-bold"></i></span> Marked as connected
|
|
|
|
|
|
|
+ <div class="text-muted">
|
|
|
|
|
+ <span class="text-success"><i class="mdi mdi-check-bold"></i></span> Marked as Connected
|
|
|
</div>
|
|
</div>
|
|
|
{% elif object.cable %}
|
|
{% elif object.cable %}
|
|
|
- <table class="table table-hover panel-body attr-table">
|
|
|
|
|
|
|
+ <table class="table table-hover attr-table">
|
|
|
<tr>
|
|
<tr>
|
|
|
- <td>Cable</td>
|
|
|
|
|
|
|
+ <th scope="row">Cable</th>
|
|
|
<td>
|
|
<td>
|
|
|
<a href="{{ object.cable.get_absolute_url }}">{{ object.cable }}</a>
|
|
<a href="{{ object.cable.get_absolute_url }}">{{ object.cable }}</a>
|
|
|
- <a href="{% url 'dcim:frontport_trace' pk=object.pk %}" class="btn btn-primary btn-xs" title="Trace">
|
|
|
|
|
|
|
+ <a href="{% url 'dcim:frontport_trace' pk=object.pk %}" class="btn btn-primary btn-sm lh-1" title="Trace">
|
|
|
<i class="mdi mdi-transit-connection-variant" aria-hidden="true"></i>
|
|
<i class="mdi mdi-transit-connection-variant" aria-hidden="true"></i>
|
|
|
</a>
|
|
</a>
|
|
|
</td>
|
|
</td>
|
|
|
</tr>
|
|
</tr>
|
|
|
<tr>
|
|
<tr>
|
|
|
- <td>Connection Status</td>
|
|
|
|
|
|
|
+ <th scope="row">Connection Status</th>
|
|
|
<td>
|
|
<td>
|
|
|
{% if object.cable.status %}
|
|
{% if object.cable.status %}
|
|
|
- <span class="label label-success">{{ object.cable.get_status_display }}</span>
|
|
|
|
|
|
|
+ <span class="badge bg-success">{{ object.cable.get_status_display }}</span>
|
|
|
{% else %}
|
|
{% else %}
|
|
|
- <span class="label label-info">{{ object.cable.get_status_display }}</span>
|
|
|
|
|
|
|
+ <span class="badge bg-info">{{ object.cable.get_status_display }}</span>
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
</td>
|
|
</td>
|
|
|
</tr>
|
|
</tr>
|
|
|
</table>
|
|
</table>
|
|
|
{% else %}
|
|
{% else %}
|
|
|
- <div class="panel-body text-muted">
|
|
|
|
|
- Not connected
|
|
|
|
|
|
|
+ <div class="text-muted">
|
|
|
|
|
+ Not Connected
|
|
|
{% if perms.dcim.add_cable %}
|
|
{% if perms.dcim.add_cable %}
|
|
|
- <span class="dropdown pull-right">
|
|
|
|
|
- <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
|
|
|
|
+ <div class="dropdown float-end">
|
|
|
|
|
+ <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
<span class="mdi mdi-ethernet-cable" aria-hidden="true"></span> Connect
|
|
<span class="mdi mdi-ethernet-cable" aria-hidden="true"></span> Connect
|
|
|
</button>
|
|
</button>
|
|
|
- <ul class="dropdown-menu dropdown-menu-right">
|
|
|
|
|
- <li><a href="{% url 'dcim:frontport_connect' termination_a_id=object.pk termination_b_type='interface' %}?return_url={{ object.get_absolute_url }}">Interface</a></li>
|
|
|
|
|
- <li><a href="{% url 'dcim:frontport_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 href="{% url 'dcim:frontport_connect' termination_a_id=object.pk termination_b_type='console-port' %}?return_url={{ object.get_absolute_url }}">Console Port</a></li>
|
|
|
|
|
- <li><a href="{% url 'dcim:frontport_connect' termination_a_id=object.pk termination_b_type='front-port' %}?return_url={{ object.get_absolute_url }}">Front Port</a></li>
|
|
|
|
|
- <li><a href="{% url 'dcim:frontport_connect' termination_a_id=object.pk termination_b_type='rear-port' %}?return_url={{ object.get_absolute_url }}">Rear Port</a></li>
|
|
|
|
|
- <li><a href="{% url 'dcim:frontport_connect' termination_a_id=object.pk termination_b_type='circuit-termination' %}?return_url={{ object.get_absolute_url }}">Circuit Termination</a></li>
|
|
|
|
|
- </ul>
|
|
|
|
|
- </span>
|
|
|
|
|
|
|
+ <ul class="dropdown-menu dropdown-menu-end">
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a class="dropdown-item" href="{% url 'dcim:frontport_connect' termination_a_id=object.pk termination_b_type='interface' %}?return_url={{ object.get_absolute_url }}">Interface</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a class="dropdown-item" href="{% url 'dcim:frontport_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:frontport_connect' termination_a_id=object.pk termination_b_type='console-port' %}?return_url={{ object.get_absolute_url }}">Console Port</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a class="dropdown-item" href="{% url 'dcim:frontport_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:frontport_connect' termination_a_id=object.pk termination_b_type='rear-port' %}?return_url={{ object.get_absolute_url }}">Rear Port</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a class="dropdown-item" href="{% url 'dcim:frontport_connect' termination_a_id=object.pk termination_b_type='circuit-termination' %}?return_url={{ object.get_absolute_url }}">Circuit Termination</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </div>
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
</div>
|
|
</div>
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
{% plugin_right_page object %}
|
|
{% plugin_right_page object %}
|
|
|
</div>
|
|
</div>
|