{% extends 'generic/object.html' %} {% load render_table from django_tables2 %} {% block controls %} {% endblock controls %} {% block content %}
Segment
Name {{ object.name|placeholder }}
Network Label {{ object.network_label|placeholder }}
Install Date {{ object.install_date|placeholder }}
Termination Date {{ object.termination_date|placeholder }}
Supplier {% if object.supplier %} {{ object.supplier }} {% else %} {{ ''|placeholder }} {% endif %}
Supplier Name {{ object.supplier_segment_name|placeholder }}
Supplier ID {{ object.supplier_segment_id|placeholder }}
Supplier Contract {{ object.supplier_segment_contract|placeholder }}
A
Site A {% if object.site_a %} {{ object.site_a }} {% else %} {{ ''|placeholder }} {% endif %}
Location A {% if object.location_a %} {{ object.location_a }} {% else %} {{ ''|placeholder }} {% endif %}
Device A {% if object.device_a %} {{ object.device_a }} {% else %} {{ ''|placeholder }} {% endif %}
Port A {% if object.port_a %} {{ object.port_a }} {% else %} {{ ''|placeholder }} {% endif %}
Note A {{ object.note_a|markdown }}
B
Site B {% if object.site_b %} {{ object.site_b }} {% else %} {{ ''|placeholder }} {% endif %}
Location B {% if object.location_b %} {{ object.location_b }} {% else %} {{ ''|placeholder }} {% endif %}
Device B {% if object.device_b %} {{ object.device_b }} {% else %} {{ ''|placeholder }} {% endif %}
Port B {% if object.port_b %} {{ object.port_b }} {% else %} {{ ''|placeholder }} {% endif %}
Note B {{ object.note_b|markdown }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
Imported Data
{{ object.imported_data|json|wordwrap:80 }}
{% load render_table from django_tables2 %}
Related Circuits
{% render_table circuits_table 'inc/table.html' %}
{% load render_table from django_tables2 %}
Related ServicePaths
{% render_table sevice_paths_table 'inc/table.html' %}
{% endblock content %}