{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load static %}
{% load render_table from django_tables2 %}
{% block head %}
{{ block.super }}
{% endblock %}
{% block content %}
| Name | {{ object.name }} |
| Type | {% badge object.get_closure_type_display bg_color=object.get_closure_type_color %} |
| Status | {% badge object.get_status_display bg_color=object.get_status_color %} |
| Manufacturer | {{ object.manufacturer|linkify|default:"—" }} |
| Model | {{ object.model|default:"—" }} |
| Site | {{ object.site|linkify|default:"—" }} |
| Location | {{ object.location|linkify|default:"—" }} |
| Elevation (m) | {{ object.elevation_m|default:"—" }} |
| Installed | {{ object.installed_date|default:"—" }} |
| Capacity | {{ object.capacity_splices }} splices |
| Used | {{ object.used_splices }} |
| Utilization |
{{ object.utilization_pct }}%
|
{{ object.location_point|json_script:"osp-closure-point-data" }}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_right_page object %}
{% plugin_left_page object %}
{% render_table tray_table 'inc/table.html' %}
{% plugin_full_width_page object %}
{% endblock %}
{% block javascript %}
{{ block.super }}
{% endblock %}