{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load static %}
{% block head %}
{{ block.super }}
{% endblock %}
{% block content %}
| Name | {{ object.name }} |
| Status | {% badge object.get_status_display bg_color=object.get_status_color %} |
| Strands | {{ object.strand_count }} |
| A termination | {{ object.a_termination|linkify|default:"—" }} |
| B termination | {{ object.b_termination|linkify|default:"—" }} |
| Description | {{ object.description|default:"—" }} |
| Strand loss (dB) | {{ object.strand_loss_db|floatformat:3 }} |
| Splice loss (dB) | {{ object.splice_loss_db|floatformat:3 }} |
| Connector loss (dB) | {{ object.connector_total_loss_db|floatformat:3 }} ({{ object.connectors_per_end }} × 2 × {{ object.connector_loss_db }}) |
| Total loss (dB) | {{ object.total_loss_db|floatformat:3 }} |
| Target budget (dB) | {{ object.target_loss_budget_db|floatformat:3 }} |
| Budget |
{% load l10n %}
{% with gauge=object.loss_budget_gauge %}
{% endwith %}
|
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_right_page object %}
{% plugin_left_page object %}
| # | Strand | Cable | Length (m) | Loss (dB) | Splice → next |
{% for strand, splice in hops %}
| {{ forloop.counter }} |
{{ strand|linkify }} |
{{ strand.cable|linkify }} |
{{ strand.cable.effective_length_m }} |
{{ strand.loss_db|floatformat:3 }} |
{% if splice %}{{ splice|linkify }} ({{ splice.loss_db|floatformat:3 }} dB){% else %}—{% endif %}
|
{% empty %}
| No strands assigned to this link yet. |
{% endfor %}
{% plugin_full_width_page object %}
{% endblock %}