1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

103 lines
4.6 KiB
HTML
Raw Normal View History

{% extends 'generic/object.html' %}
2020-06-25 11:00:25 -04:00
{% load helpers %}
{% load plugins %}
{% load i18n %}
2020-06-25 11:00:25 -04: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">
{% trans "Power Port" %}
2021-04-18 11:35:42 -07:00
</h5>
<div class="card-body">
<table class="table table-hover attr-table">
<tr>
<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>
<tr>
<th scope="row">{% trans "Module" %}</th>
2022-03-22 14:51:20 -04:00
<td>{{ object.module|linkify|placeholder }}</td>
</tr>
2021-04-18 11:35:42 -07:00
<tr>
<th scope="row">{% trans "Name" %}</th>
2021-04-18 11:35:42 -07:00
<td>{{ object.name }}</td>
</tr>
<tr>
<th scope="row">{% trans "Label" %}</th>
2021-04-18 11:35:42 -07:00
<td>{{ object.label|placeholder }}</td>
</tr>
<tr>
<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>
<th scope="row">{% trans "Description" %}</th>
2021-04-18 11:35:42 -07:00
<td>{{ object.description|placeholder }}</td>
</tr>
<tr>
<th scope="row">{% trans "Maximum Draw" %}</th>
2021-04-18 11:35:42 -07:00
<td>{{ object.maximum_draw|placeholder }}</td>
</tr>
<tr>
<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' %}
{% include 'inc/panels/tags.html' %}
{% 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">
<div class="card">
<h5 class="card-header">{% trans "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> {% trans "Marked as Connected" %}
</div>
{% elif object.cable %}
{% include 'dcim/inc/connection_endpoints.html' with trace_url='dcim:powerport_trace' %}
{% else %}
<div class="text-muted">
{% trans "Not Connected" %}
{% 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">
<span class="mdi mdi-ethernet-cable" aria-hidden="true"></span> {% trans "Connect" %}
</button>
<ul class="dropdown-menu dropdown-menu-end">
<li>
<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>
</li>
<li>
<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>
</li>
</ul>
</span>
{% endif %}
2021-04-18 11:35:42 -07:00
</div>
{% endif %}
2020-06-25 11:00:25 -04:00
</div>
</div>
{% include 'dcim/inc/panels/inventory_items.html' %}
{% plugin_right_page object %}
</div>
</div>
<div class="row">
2021-04-30 15:55:37 -07:00
<div class="col col-md-12">
{% plugin_full_width_page object %}
2020-06-25 11:00:25 -04:00
</div>
</div>
{% endblock %}