{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load static %}
{% load render_table from django_tables2 %}
{% block head %}
{{ block.super }}
{% endblock %}
{% block content %}
| CID | {{ object.cid }} |
| Type | {% badge object.get_trunk_type_display bg_color=object.get_trunk_type_color %} |
| Polarity | {% if object.polarity %}{% badge object.get_polarity_display bg_color=object.get_polarity_color %}{% else %}—{% endif %} |
| Status | {% badge object.get_status_display bg_color=object.get_status_color %} |
| Fibre count | {{ object.fibre_count }} |
| Manufacturer | {{ object.manufacturer|linkify|default:"—" }} |
| Length (m) | {{ object.length_m|default:"—" }} |
| Tenant | {{ object.tenant|linkify|default:"—" }} |
| Show on map | {{ object.show_on_map|yesno:"yes,no" }} |
| Description | {{ object.description|default:"—" }} |
| Capacity | {{ object.fibre_count }} fibres |
| Used | {{ object.fibres_used }} |
| Remaining | {{ object.fibres_remaining }} |
| Utilisation |
{{ object.fibres_utilization_pct }}%
|
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_right_page object %}
{% plugin_left_page object %}
{% render_table breakout_table 'inc/table.html' %}
{% plugin_full_width_page object %}
{% endblock %}