{% extends "base.html" %} {% block title %}Cross-Connects — CCC{% endblock %} {% block content %}
| XC Number | Facility | Port A | Port Z | Speed | Monthly $ | Circuit | Status | Order Status | Carrier Ticket | Est. Delivery | Actions |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ 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. | |||||||||||