{% extends '_base.html' %} {% load helpers %} {% block title %}{{ circuit.provider }} Circuit {{ circuit.cid }}{% endblock %} {% block content %}
{% if perms.circuits.change_circuit %} Edit this circuit {% endif %} {% if perms.circuits.delete_circuit %} Delete this circuit {% endif %}

{{ circuit.provider }} Circuit {{ circuit.cid }}

Circuit
Provider {{ circuit.provider }}
Circuit ID {{ circuit.cid }}
Type {{ circuit.type }}
Tenant {% if circuit.tenant %} {{ circuit.tenant }} {% else %} N/A {% endif %}
Port Speed {{ circuit.port_speed_human }}
Commit Rate {% if circuit.commit_rate %}{{ circuit.commit_rate_human }}{% else %}N/A{% endif %}
Created {{ circuit.created }}
Last Updated {{ circuit.last_updated }}
Termination
Site {{ circuit.site }}
Termination {% if circuit.interface %} {{ circuit.interface.device }} {{ circuit.interface }} {% else %} Not defined {% endif %}
Install Date {% if circuit.install_date %} {{ circuit.install_date }} {% else %} N/A {% endif %}
Cross-Connect {% if circuit.xconnect_id %} {{ circuit.xconnect_id }} {% else %} N/A {% endif %}
Patch Panel/Port {% if circuit.pp_info %} {{ circuit.pp_info }} {% else %} N/A {% endif %}
Comments
{% if circuit.comments %} {{ circuit.comments|gfm }} {% else %} None {% endif %}
{% endblock %}