2021-12-18 14:02:01 -05:00
|
|
|
{% extends 'generic/object.html' %}
|
2020-06-25 11:00:25 -04:00
|
|
|
{% load helpers %}
|
2020-06-25 13:27:01 -04:00
|
|
|
{% load plugins %}
|
2023-07-29 03:30:25 +07:00
|
|
|
{% load i18n %}
|
2020-06-25 11:00:25 -04:00
|
|
|
|
2021-12-18 14:02:01 -05:00
|
|
|
{% block breadcrumbs %}
|
|
|
|
{{ block.super }}
|
|
|
|
<li class="breadcrumb-item">
|
|
|
|
<a href="{% url 'dcim:device_powerports' pk=object.device.pk %}">{{ object.device }}</a>
|
|
|
|
</li>
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-06-25 11:00:25 -04:00
|
|
|
{% block content %}
|
2021-04-18 11:35:42 -07:00
|
|
|
<div class="row mb-3">
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-6">
|
2021-04-18 11:35:42 -07:00
|
|
|
<div class="card">
|
|
|
|
<h5 class="card-header">
|
2023-07-29 03:30:25 +07:00
|
|
|
{% trans "Power Port" %}
|
2021-04-18 11:35:42 -07:00
|
|
|
</h5>
|
|
|
|
<div class="card-body">
|
|
|
|
<table class="table table-hover attr-table">
|
|
|
|
<tr>
|
2023-07-29 03:30:25 +07:00
|
|
|
<th scope="row">{% trans "Device" %}</th>
|
2022-03-22 14:51:20 -04:00
|
|
|
<td>{{ object.device|linkify }}</td>
|
2021-04-18 11:35:42 -07:00
|
|
|
</tr>
|
2022-02-11 11:09:07 -05:00
|
|
|
<tr>
|
2023-07-29 03:30:25 +07:00
|
|
|
<th scope="row">{% trans "Module" %}</th>
|
2022-03-22 14:51:20 -04:00
|
|
|
<td>{{ object.module|linkify|placeholder }}</td>
|
2022-02-11 11:09:07 -05:00
|
|
|
</tr>
|
2021-04-18 11:35:42 -07:00
|
|
|
<tr>
|
2023-07-29 03:30:25 +07:00
|
|
|
<th scope="row">{% trans "Name" %}</th>
|
2021-04-18 11:35:42 -07:00
|
|
|
<td>{{ object.name }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-07-29 03:30:25 +07:00
|
|
|
<th scope="row">{% trans "Label" %}</th>
|
2021-04-18 11:35:42 -07:00
|
|
|
<td>{{ object.label|placeholder }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-07-29 03:30:25 +07:00
|
|
|
<th scope="row">{% trans "Type" %}</th>
|
2021-07-21 11:20:35 -04:00
|
|
|
<td>{{ object.get_type_display|placeholder }}</td>
|
2021-04-18 11:35:42 -07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-07-29 03:30:25 +07:00
|
|
|
<th scope="row">{% trans "Description" %}</th>
|
2021-04-18 11:35:42 -07:00
|
|
|
<td>{{ object.description|placeholder }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-07-29 03:30:25 +07:00
|
|
|
<th scope="row">{% trans "Maximum Draw" %}</th>
|
2021-04-18 11:35:42 -07:00
|
|
|
<td>{{ object.maximum_draw|placeholder }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-07-29 03:30:25 +07:00
|
|
|
<th scope="row">{% trans "Allocated Draw" %}</th>
|
2021-04-18 11:35:42 -07:00
|
|
|
<td>{{ object.allocated_draw|placeholder }}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2020-06-25 11:00:25 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-19 14:21:31 -04:00
|
|
|
{% include 'inc/panels/custom_fields.html' %}
|
2021-10-21 11:23:31 -04:00
|
|
|
{% include 'inc/panels/tags.html' %}
|
2020-11-19 11:29:18 -05:00
|
|
|
{% 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">
|
2022-10-03 16:11:24 -04:00
|
|
|
<div class="card">
|
2023-07-29 03:30:25 +07:00
|
|
|
<h5 class="card-header">{% trans "Connection" %}</h5>
|
2022-10-03 16:11:24 -04:00
|
|
|
<div class="card-body">
|
|
|
|
{% if object.mark_connected %}
|
|
|
|
<div class="text-muted">
|
2023-07-29 03:30:25 +07:00
|
|
|
<span class="text-success"><i class="mdi mdi-check-bold"></i></span> {% trans "Marked as Connected" %}
|
2022-10-03 16:11:24 -04:00
|
|
|
</div>
|
|
|
|
{% elif object.cable %}
|
2022-12-30 19:01:51 +01:00
|
|
|
{% include 'dcim/inc/connection_endpoints.html' with trace_url='dcim:powerport_trace' %}
|
2022-10-03 16:11:24 -04:00
|
|
|
{% else %}
|
|
|
|
<div class="text-muted">
|
2023-07-29 03:30:25 +07:00
|
|
|
{% trans "Not Connected" %}
|
2022-10-03 16:11:24 -04:00
|
|
|
{% if perms.dcim.add_cable %}
|
|
|
|
<span 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">
|
2023-07-29 03:30:25 +07:00
|
|
|
<span class="mdi mdi-ethernet-cable" aria-hidden="true"></span> {% trans "Connect" %}
|
2022-10-03 16:11:24 -04:00
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu dropdown-menu-end">
|
|
|
|
<li>
|
2023-07-29 03:30:25 +07:00
|
|
|
<a href="{% url 'dcim:cable_add' %}?a_terminations_type=dcim.powerport&a_terminations={{ object.pk }}&b_terminations_type=dcim.poweroutlet&return_url={{ object.get_absolute_url }}" class="dropdown-item">{% trans "Power Outlet" %}</a>
|
2022-10-03 16:11:24 -04:00
|
|
|
</li>
|
|
|
|
<li>
|
2023-07-29 03:30:25 +07:00
|
|
|
<a href="{% url 'dcim:cable_add' %}?a_terminations_type=dcim.powerport&a_terminations={{ object.pk }}&b_terminations_type=dcim.powerfeed&return_url={{ object.get_absolute_url }}" class="dropdown-item">{% trans "Power Feed" %}</a>
|
2022-10-03 16:11:24 -04:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
2021-04-18 11:35:42 -07:00
|
|
|
</div>
|
2022-10-03 16:11:24 -04:00
|
|
|
{% endif %}
|
2020-06-25 11:00:25 -04:00
|
|
|
</div>
|
2022-10-03 16:11:24 -04:00
|
|
|
</div>
|
|
|
|
{% include 'dcim/inc/panels/inventory_items.html' %}
|
|
|
|
{% 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 %}
|