mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-24 12:32:42 -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>
123 lines
5.2 KiB
HTML
123 lines
5.2 KiB
HTML
{% extends 'base/layout.html' %}
|
|
{% load helpers %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>
|
|
{% blocktrans trimmed with object_type=object|meta:"verbose_name"|bettertitle %}
|
|
Cable Trace for {{ object_type }} {{ object }}
|
|
{% endblocktrans %}
|
|
</h2>
|
|
|
|
<div class="row">
|
|
|
|
{# Cable trace SVG & options #}
|
|
<div class="col col-md-5">
|
|
{% if path %}
|
|
<div class="text-center my-3">
|
|
<object data="{{ svg_url }}" class="rack_elevation"></object>
|
|
<div>
|
|
<a class="btn btn-outline-primary my-3" href="{{ svg_url }}">
|
|
<i class="mdi mdi-file-download"></i> {% trans "Download SVG" %}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="trace-end">
|
|
{% if path.is_split and path.get_asymmetric_nodes %}
|
|
<h3 class="text-danger">{% trans "Asymmetric Path" %}!</h3>
|
|
<p>{% trans "The nodes below have no links and result in an asymmetric path" %}:</p>
|
|
<ul class="text-start">
|
|
{% for next_node in path.get_asymmetric_nodes %}
|
|
<li class="text-muted">{{ next_node|linkify }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% elif path.is_split %}
|
|
<h3 class="text-danger">{% trans "Path split" %}!</h3>
|
|
<p>{% trans "Select a node below to continue" %}:</p>
|
|
<ul class="text-start">
|
|
{% for next_node in path.get_split_nodes %}
|
|
{% if next_node.cable %}
|
|
{% with viewname=next_node|viewname:"trace" %}
|
|
<li>
|
|
<a href="{% url viewname pk=next_node.pk %}">{{ next_node|meta:"verbose_name"|bettertitle }} {{ next_node }}</a>
|
|
({% trans "Cable" %} {{ next_node.cable|linkify }})
|
|
</li>
|
|
{% endwith %}
|
|
{% else %}
|
|
<li class="text-muted">{{ next_node }}</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<h3 class="text-center text-success">{% trans "Trace Completed" %}</h3>
|
|
<table class="table">
|
|
<tr>
|
|
<th scope="row">{% trans "Total segments" %}</th>
|
|
<td>{{ path.segment_count }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Total length" %}</th>
|
|
<td>
|
|
{% if total_length %}
|
|
{{ total_length|floatformat:"-2" }}{% if not is_definitive %}+{% endif %} {% trans "Meters" %} /
|
|
{{ total_length|meters_to_feet|floatformat:"-2" }} {% trans "Feet" %}
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% endif %}
|
|
</div>
|
|
{% else %}
|
|
<h3 class="text-center text-muted my-3">
|
|
{% trans "No paths found" %}
|
|
</h3>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{# Related paths #}
|
|
<div class="col col-md-7">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Related Paths" %}</h2>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Origin" %}</th>
|
|
<th>{% trans "Destination" %}</th>
|
|
<th>{% trans "Segments" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for cablepath in related_paths %}
|
|
<tr{% if cablepath.pk == path.pk %} class="info"{% endif %}>
|
|
<td>
|
|
<a href="?cablepath_id={{ cablepath.pk }}">{{ cablepath.origins|join:", " }}</a>
|
|
</td>
|
|
<td>
|
|
{% if cablepath.destinations %}
|
|
{{ cablepath.destinations|join:", " }}
|
|
{% else %}
|
|
<span class="text-muted">{% trans "Incomplete" %}</span>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{{ cablepath.segment_count }}
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<td colspan="3" class="text-muted">
|
|
{% trans "None found" %}
|
|
</td>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %}
|