{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% load static %} {% block extra_controls %} {% if perms.dcim.add_frontport %} {% trans "Provision Ports" %} {% endif %} {% endblock extra_controls %} {% block content %}
{% trans "Fiber Cable" %}
{% trans "Cable" %} {{ object.cable|linkify }}
{% trans "Fiber Cable Type" %} {{ object.fiber_cable_type|linkify }}
{% trans "Manufacturer" %} {{ object.fiber_cable_type.manufacturer|linkify }}
{% trans "Construction" %} {{ object.fiber_cable_type.get_construction_display }}
{% trans "Fiber Type" %} {{ object.cable.get_type_display }}
{% trans "Strand Count" %} {{ object.fiber_cable_type.strand_count }}
{% trans "Identification" %}
{% trans "Serial Number" %} {{ object.serial_number|placeholder }}
{% trans "Install Date" %} {{ object.install_date|placeholder }}
{% trans "Installed by" %} {{ object.installed_by|linkify|placeholder }}
{% trans "Glass Length" %} {% if object.glass_length is not None %} {{ object.glass_length }} {{ object.cable.length_unit|default:'' }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Sheath Marks" %}
{% trans "Start mark" %} {% if object.start_mark is not None %} {{ object.start_mark }} {{ object.fiber_cable_type.get_mark_unit_display|default:'' }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "End mark" %} {% if object.end_mark is not None %} {{ object.end_mark }} {{ object.fiber_cable_type.get_mark_unit_display|default:'' }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Strand Utilization" %}
{% if strand_stats.total > 0 %}
{% if strand_stats.active_pct %}
{{ strand_stats.active }}
{% endif %} {% if strand_stats.available_pct %}
{{ strand_stats.available }}
{% endif %}
{{ strand_stats.active }} {% trans "Active" %} {{ strand_stats.available }} {% trans "Available" %} {{ strand_stats.total }} {% trans "total" %}
{% else %}

{% trans "No strands." %}

{% endif %}
{% if object.notes %}
{% trans "Notes" %}
{{ object.notes|markdown }}
{% endif %} {% plugin_full_width_page object %}
{% endblock %}