mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-21 21:02:23 -06:00
* 16649 general contrast issues (#16759) * fixes #16647: navigation contrast issues updated * fixes #16651: table contrast issues new * fixed #16649: general contrast issues * fixes #16649: feedback changes --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.broadband> * 16648 dashboard contrast issues (#16824) * fixed #16648: dashboard contrast issues * reinstate amendment to 16649 * fixed #16648: created gridstack override and removed inline bug fix --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> * fixed #16853: accessibility issues * fixed #16847: updated font (#16848) * fixed #16847: updated font * fixed #16847: changed font to local and added current font as fallback * fixed #16847: removed inter and added padding to page header --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * 16849 document hierarchy issues (#16875) * fixed #16849: h elements not in sequential order * fixed #16849: Lists do not contain only li elements * fixed #16849: fixed h hierarchy on rack object pages * Remove standalone h5 classes * Remove unnecessary line breaks --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * 16650 button contrast issues (#16845) * fixed #16650: button contrast issues * fixed #16650: green bg text contrast issue * Revert errant JS resource updates * Revert custom button colors * Fix indentation --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * 16907 web UI refresh (#16915) * closes #16907: web ui refresh * closes #16907: changed default widget color to primary color * closes #16907: removed comma * Revert dashboard widget color changes * Rename logo images for consistency * Restore original dashboard widget config * Remove .navbar-brand-autodark from logo * Restore logo file names --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * 16394 distinguish product edition (#16924) * closes #16907: web ui refresh * closes #16907: changed default widget color to primary color * closes #16907: removed comma * closes #16394: distinguish product edition * Revert dashboard changes * Clean up redundant styling (merge error) * removed labs logo and added sub text for all editions * fixed motif bug * Fix "flashing" of side nav under dark mode * Use title case for edition label * altered edition text style --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * Query release features to toggle commercial theme * fixes dark mode primary button contrast issue * fixes #16913: hidden admin nav link (#16978) Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * fixed 16852: misc accessbility problems (#16977) * fixed 16852: misc accessbility problems * Restore tooltip text * Add translation support * Add missing i18n --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * fixes issues in #16850 (#16986) * fixes issues in #16850: issue 3 and 5 * Add link text for 'clear' button on table column * Translate aria label --------- Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * Use alternate footer links for commercial releases * Remove Inter font * Adjust base font weight to 500 * Retain default text color for hyperlinks inside tables * Logo & edition cleanup * Move dashboard styling * Misc cleanup * Remove unused styles * Misc cleanup & refactoring --------- Co-authored-by: Andrew Gormley <andrewgormley91@gmail.com> Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.local> Co-authored-by: Andrew Gormley <Andrew@MacBook-Pro-3.broadband>
376 lines
15 KiB
HTML
376 lines
15 KiB
HTML
{% extends 'generic/object.html' %}
|
|
{% load helpers %}
|
|
{% load plugins %}
|
|
{% load render_table from django_tables2 %}
|
|
{% load i18n %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ block.super }}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'dcim:device_interfaces' pk=object.device.pk %}">{{ object.device }}</a>
|
|
</li>
|
|
{% endblock %}
|
|
|
|
{% block extra_controls %}
|
|
{% if perms.dcim.add_interface and not object.is_virtual %}
|
|
<a href="{% url 'dcim:interface_add' %}?device={{ object.device.pk }}&parent={{ object.pk }}&return_url={{ object.get_absolute_url }}" class="btn btn-success">
|
|
<span class="mdi mdi-plus-thick" aria-hidden="true"></span> {% trans "Add Child Interface" %}
|
|
</a>
|
|
{% endif %}
|
|
{{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-6">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Interface" %}</h2>
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Device" %}</th>
|
|
<td>{{ object.device|linkify }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Module" %}</th>
|
|
<td>{{ object.module|linkify|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Name" %}</th>
|
|
<td>{{ object.name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Label" %}</th>
|
|
<td>{{ object.label|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Type" %}</th>
|
|
<td>{{ object.get_type_display }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Speed/Duplex" %}</th>
|
|
<td>
|
|
{{ object.speed|humanize_speed|placeholder }} /
|
|
{{ object.get_duplex_display|placeholder }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "MTU" %}</th>
|
|
<td>{{ object.mtu|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Enabled" %}</th>
|
|
<td>{% checkmark object.enabled %}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Management Only" %}</th>
|
|
<td>{% checkmark object.mgmt_only %}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Description" %}</th>
|
|
<td>{{ object.description|placeholder }} </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "PoE Mode" %}</th>
|
|
<td>{{ object.get_poe_mode_display|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "PoE Type" %}</th>
|
|
<td>{{ object.get_poe_type_display|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "802.1Q Mode" %}</th>
|
|
<td>{{ object.get_mode_display|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Transmit power (dBm)" %}</th>
|
|
<td>{{ object.tx_power|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Tunnel" %}</th>
|
|
<td>{{ object.tunnel_termination.tunnel|linkify|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "L2VPN" %}</th>
|
|
<td>{{ object.l2vpn_termination.l2vpn|linkify|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Related Interfaces" %}</h2>
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Parent" %}</th>
|
|
<td>{{ object.parent|linkify|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Bridge" %}</th>
|
|
<td>{{ object.bridge|linkify|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "LAG" %}</th>
|
|
<td>{{ object.lag|linkify|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% include 'inc/panels/custom_fields.html' %}
|
|
{% include 'inc/panels/tags.html' %}
|
|
{% plugin_left_page object %}
|
|
</div>
|
|
<div class="col col-md-6">
|
|
{% include 'inc/panel_table.html' with table=vdc_table heading="Virtual Device Contexts" %}
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Addressing" %}</h2>
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "MAC Address" %}</th>
|
|
<td><span class="font-monospace">{{ object.mac_address|placeholder }}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "WWN" %}</th>
|
|
<td><span class="font-monospace">{{ object.wwn|placeholder }}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "VRF" %}</th>
|
|
<td>{{ object.vrf|linkify|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% if not object.is_virtual %}
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Connection" %}</h2>
|
|
{% if object.mark_connected %}
|
|
<div class="card-body">
|
|
<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:interface_trace' %}
|
|
{% elif object.wireless_link %}
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Wireless Link" %}</th>
|
|
<td>
|
|
{{ object.wireless_link|linkify }}
|
|
<a href="{% url 'dcim:interface_trace' pk=object.pk %}" class="btn btn-primary lh-1" title="{% trans "Trace" %}">
|
|
<i class="mdi mdi-transit-connection-variant" aria-hidden="true"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% with peer_interface=object.link_peers.0 %}
|
|
<tr>
|
|
<th scope="row">{% trans "Device" %}</th>
|
|
<td>{{ peer_interface.device|linkify }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Name" %}</th>
|
|
<td>{{ peer_interface|linkify }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Type" %}</th>
|
|
<td>{{ peer_interface.get_type_display }}</td>
|
|
</tr>
|
|
{% endwith %}
|
|
</table>
|
|
{% else %}
|
|
<div class="card-body text-muted">
|
|
{% trans "Not Connected" %}
|
|
{% if object.is_wired and perms.dcim.add_cable %}
|
|
<div class="dropdown float-end">
|
|
<button type="button" class="btn btn-primary 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 class="dropdown-item" href="{% url 'dcim:cable_add' %}?a_terminations_type=dcim.interface&a_terminations={{ object.pk }}&b_terminations_type=dcim.interface&return_url={{ object.get_absolute_url }}">{% trans "Interface" %}</a>
|
|
</li>
|
|
<li>
|
|
<a class="dropdown-item" href="{% url 'dcim:cable_add' %}?a_terminations_type=dcim.interface&a_terminations={{ object.pk }}&b_terminations_type=dcim.frontport&return_url={{ object.get_absolute_url }}">{% trans "Front Port" %}</a>
|
|
</li>
|
|
<li>
|
|
<a class="dropdown-item" href="{% url 'dcim:cable_add' %}?a_terminations_type=dcim.interface&a_terminations={{ object.pk }}&b_terminations_type=dcim.rearport&return_url={{ object.get_absolute_url }}">{% trans "Rear Port" %}</a>
|
|
</li>
|
|
<li>
|
|
<a class="dropdown-item" href="{% url 'dcim:cable_add' %}?a_terminations_type=dcim.interface&a_terminations={{ object.pk }}&b_terminations_type=circuits.circuittermination&return_url={{ object.get_absolute_url }}">{% trans "Circuit Termination" %}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{% elif object.is_wireless and perms.wireless.add_wirelesslink %}
|
|
<div class="dropdown float-end">
|
|
<a href="{% url 'wireless:wirelesslink_add' %}?interface_a={{ object.pk }}&return_url={{ object.get_absolute_url }}" class="btn btn-primary">
|
|
<span class="mdi mdi-wifi-plus" aria-hidden="true"></span> {% trans "Connect" %}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
{% if object.is_wireless %}
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Wireless" %}</h2>
|
|
{% with peer=object.connected_endpoints.0 %}
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>{% trans "Local" %}</th>
|
|
{% if peer %}
|
|
<th>{% trans "Peer" %}</th>
|
|
{% endif %}
|
|
</tr>
|
|
</thead>
|
|
<tr>
|
|
<th scope="row">{% trans "Role" %}</th>
|
|
<td>{{ object.get_rf_role_display|placeholder }}</td>
|
|
{% if peer %}
|
|
<td>{{ peer.get_rf_role_display|placeholder }}</td>
|
|
{% endif %}
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Channel" %}</th>
|
|
<td>{{ object.get_rf_channel_display|placeholder }}</td>
|
|
{% if peer %}
|
|
<td{% if peer.rf_channel != object.rf_channel %} class="text-danger"{% endif %}>
|
|
{{ peer.get_rf_channel_display|placeholder }}
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Channel Frequency" %}</th>
|
|
<td>
|
|
{% if object.rf_channel_frequency %}
|
|
{{ object.rf_channel_frequency|floatformat:"-2" }} {% trans "MHz" %}
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
{% if peer %}
|
|
<td{% if peer.rf_channel_frequency != object.rf_channel_frequency %} class="text-danger"{% endif %}>
|
|
{% if peer.rf_channel_frequency %}
|
|
{{ peer.rf_channel_frequency|floatformat:"-2" }} {% trans "MHz" %}
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Channel Width" %}</th>
|
|
<td>
|
|
{% if object.rf_channel_width %}
|
|
{{ object.rf_channel_width|floatformat:"-3" }} {% trans "MHz" %}
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
{% if peer %}
|
|
<td{% if peer.rf_channel_width != object.rf_channel_width %} class="text-danger"{% endif %}>
|
|
{% if peer.rf_channel_width %}
|
|
{{ peer.rf_channel_width|floatformat:"-3" }} {% trans "MHz" %}
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
</table>
|
|
{% endwith %}
|
|
</div>
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Wireless LANs" %}</h2>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Group" %}</th>
|
|
<th>{% trans "SSID" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for wlan in object.wireless_lans.all %}
|
|
<tr>
|
|
<td>{{ wlan.group|linkify|placeholder }}</td>
|
|
<td>{{ wlan|linkify:"ssid" }}</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="3" class="text-muted">{% trans "None" %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
{% if object.is_lag %}
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "LAG Members" %}</h2>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Parent" %}</th>
|
|
<th>{% trans "Interface" %}</th>
|
|
<th>{% trans "Type" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for member in object.member_interfaces.all %}
|
|
<tr>
|
|
<td>{{ member.device|linkify }}</td>
|
|
<td>{{ member|linkify }}</td>
|
|
<td>{{ member.get_type_display }}</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="3" class="text-muted">{% trans "No member interfaces" %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
{% include 'ipam/inc/panels/fhrp_groups.html' %}
|
|
{% include 'dcim/inc/panels/inventory_items.html' %}
|
|
{% plugin_right_page object %}
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
<div class="card">
|
|
<h2 class="card-header">
|
|
{% trans "IP Addresses" %}
|
|
{% if perms.ipam.add_ipaddress %}
|
|
<div class="card-actions">
|
|
<a href="{% url 'ipam:ipaddress_add' %}?device={{ object.device.pk }}&interface={{ object.pk }}&return_url={{ object.get_absolute_url }}" class="btn btn-ghost-primary btn-sm">
|
|
<span class="mdi mdi-plus-thick" aria-hidden="true"></span> {% trans "Add IP Address" %}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</h2>
|
|
{% htmx_table 'ipam:ipaddress_list' interface_id=object.pk %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
{% include 'inc/panel_table.html' with table=vlan_table heading="VLANs" %}
|
|
</div>
|
|
</div>
|
|
{% if object.is_bridge %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
{% include 'inc/panel_table.html' with table=bridge_interfaces_table heading="Bridge Interfaces" %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
{% include 'inc/panel_table.html' with table=child_interfaces_table heading="Child Interfaces" %}
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
{% plugin_full_width_page object %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|