{% extends "base.html" %} {% block title %}Cross-Connects — CCC{% endblock %} {% block content %}
Cross-Connects
← Overview
Overview Circuits Cross-Connects LOA Orders Capacity DWDM
Add Cross-Connect
{% for xc in xcs %} {% else %} {% endfor %}
XC NumberFacilityPort APort ZSpeedMonthly $CircuitStatusOrder StatusCarrier TicketEst. DeliveryActions
{{ xc.xc_number }} {{ xc.facility }} {{ xc.port_a or '—' }} {{ xc.port_z or '—' }} {{ xc.speed_gbps }}G ${{ xc.monthly_cost_usd | round(0) | int }} {{ xc.linked_circuit or '—' }} {% set s = xc.status %} {{ s }} {% set os = xc.order_status or 'not_ordered' %} {% if os == 'not_ordered' %} {% elif os in ('quoted','ordered') %} {{ os }} {% elif os in ('loa_submitted','loa_approved','installing','testing') %} {{ os }} {% elif os == 'active' %} active {% elif os == 'cancelled' %} cancelled {% else %} {{ os }} {% endif %} {{ (xc.carrier_ticket_id or '')[:14] or '—' }} {% if xc.estimated_delivery %} {% set today = now().strftime('%Y-%m-%d') if now is defined else '' %} {{ xc.estimated_delivery }} {% else %}—{% endif %} {% set os = xc.order_status or 'not_ordered' %} {% if os == 'not_ordered' %} {% elif os in ('quoted','ordered','loa_submitted','loa_approved','installing','testing') %} Pipeline {% endif %}
No cross-connects yet.
{% include 'includes/iqe_query_widget.html' %}
{% endblock %}