mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
126 lines
5.7 KiB
HTML
126 lines
5.7 KiB
HTML
{% extends 'dcim/device_component.html' %}
|
|
{% load helpers %}
|
|
{% load plugins %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-6">
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
Power Outlet
|
|
</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">Description</th>
|
|
<td>{{ object.description|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Power Port</th>
|
|
<td>{{ object.power_port }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Feed Leg</th>
|
|
<td>{{ object.get_feed_leg_display|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% include 'inc/custom_fields_panel.html' %}
|
|
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all %}
|
|
{% plugin_left_page object %}
|
|
</div>
|
|
<div class="col col-md-6">
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
Connection
|
|
</h5>
|
|
<div class="card-body">
|
|
{% if object.mark_connected %}
|
|
<div class="text-muted">
|
|
<span class="text-success"><i class="mdi mdi-check-bold"></i></span> Marked as Connected
|
|
</div>
|
|
{% elif object.cable %}
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">Cable</th>
|
|
<td>
|
|
<a href="{{ object.cable.get_absolute_url }}">{{ object.cable }}</a>
|
|
<a href="{% url 'dcim:poweroutlet_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>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% if object.connected_endpoint %}
|
|
<tr>
|
|
<th scope="row">Device</th>
|
|
<td>
|
|
<a href="{{ object.connected_endpoint.device.get_absolute_url }}">{{ object.connected_endpoint.device }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Name</th>
|
|
<td>
|
|
<a href="{{ object.connected_endpoint.get_absolute_url }}">{{ object.connected_endpoint.name }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Type</th>
|
|
<td>{{ object.connected_endpoint.get_type_display|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Description</th>
|
|
<td>{{ object.connected_endpoint.description|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Path Status</th>
|
|
<td>
|
|
{% if object.path.is_active %}
|
|
<span class="badge bg-success">Reachable</span>
|
|
{% else %}
|
|
<span class="badge bg-danger">Not Reachable</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
</table>
|
|
{% else %}
|
|
<div class="text-muted">
|
|
Not Connected
|
|
{% if perms.dcim.add_cable %}
|
|
<a href="{% url 'dcim:poweroutlet_connect' termination_a_id=object.pk termination_b_type='power-port' %}?return_url={{ object.get_absolute_url }}" title="Connect" class="btn btn-primary btn-sm float-end">
|
|
<i class="mdi mdi-ethernet-cable" aria-hidden="true"></i> Connect
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% plugin_right_page object %}
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
{% plugin_full_width_page object %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|