{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% plugin_buttons object %} {% if perms.circuits.add_circuit %} {% clone_button object %} {% endif %} {% if perms.circuits.change_circuit %} {% edit_button object %} {% endif %} {% if perms.circuits.delete_circuit %} {% delete_button object %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Circuit
Status {{ object.get_status_display }}
Provider {{ object.provider }}
Circuit ID {{ object.cid }}
Type {{ object.type }}
Tenant {% if object.tenant %} {% if object.tenant.group %} {{ object.tenant.group }} / {% endif %} {{ object.tenant }} {% else %} None {% endif %}
Install Date {{ object.install_date|placeholder }}
Commit Rate {{ object.commit_rate|humanize_speed|placeholder }}
Description {{ object.description|placeholder }}
{% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='circuits:circuit_list' %}
Comments
{% if object.comments %} {{ object.comments|render_markdown }} {% else %} None {% endif %}
{% plugin_left_page object %}
{% include 'circuits/inc/circuit_termination.html' with termination=termination_a side='A' %} {% include 'circuits/inc/circuit_termination.html' with termination=termination_z side='Z' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}