{% extends 'generic/object.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% load tabs %} {% load i18n %} {% load perms %} {% load plugins %} {% load render_table from django_tables2 %} {% block controls %}
{% plugin_buttons object %} {# Add/edit/delete/etc. buttons #} {% block control-buttons %} {# Extra buttons #} {% block extra_controls %}{% endblock %} {# Default buttons #} {% if perms.extras.add_bookmark and object.bookmarks %} {% bookmark_button object %} {% endif %} {% if request.user|can_change:object %} {% edit_button object %} {% endif %} {% if request.user|can_delete:object and object.sync_status == 'deleted' %} {% delete_button object %} {% endif %} {% endblock control-buttons %}
{# Custom links #}
{% block custom-links %} {% custom_links object %} {% endblock custom-links %}
{% 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 }}
Provider {% if object.provider %} {{ object.provider }} {% else %} {{ ''|placeholder }} {% endif %}
Provider Name {{ object.provider_segment_name|placeholder }}
Provider ID {{ object.provider_segment_id|placeholder }}
Provider Contract {{ object.provider_segment_contract|placeholder }}
Synchronization Status {{ object.get_sync_status_display }}
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 }}
{% plugin_left_page object %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_right_page object %}

{{ object.imported_data|pprint }}
{% 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' %}
{% plugin_full_width_page object %}
{% endblock content %}