{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load i18n %}
{% block content %}
| {% trans "Fiber Cable" %} |
{{ object.fiber_cable|linkify }} |
| {% trans "Site" %} |
{{ object.site|linkify }} |
| {% trans "Location" %} |
{{ object.location|linkify|default:"—" }} |
| {% trans "Storage Method" %} |
{{ object.get_storage_method_display|default:"—" }} |
| {% trans "Start Mark" %} |
{{ object.start_mark }} {{ object.get_length_unit_display }} |
| {% trans "End Mark" %} |
{{ object.end_mark }} {{ object.get_length_unit_display }} |
| {% trans "Loop Length" %} |
{{ object.loop_length }} {{ object.get_length_unit_display }} |
{% if object.notes %}
{{ object.notes|markdown }}
{% endif %}
{% plugin_full_width_page object %}
{% endblock %}