{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load i18n %}
{% load static %}
{% block content %}
| {% trans "Closure" %} |
{{ object.closure|linkify }} |
| {% trans "Fiber Cable" %} |
{{ object.fiber_cable|linkify }} |
| {% trans "Entrance Label" %} |
{{ object.entrance_label|default:"—" }} |
{% if strand_info %}
| {% trans "Strands Linked" %} |
{{ strand_info.linked }}/{{ strand_info.total }} |
{% endif %}
{% if object.notes %}
{{ object.notes|markdown }}
{% endif %}
{% plugin_full_width_page object %}
{% endblock %}