{% extends "network/base.html" %} {% block title %}Circuit Tracker — Network Design Canvas{% endblock %} {% block content %} {% if all_projects %}
{% if active_project %} Showing: {{ active_project.name }} {% endif %}
{% endif %}
{{ stats.total }}
Total Circuits
{{ stats.installed }}
Installed
{{ stats.planned }}
Planned
${{ stats.monthly_cost|round(0)|int }}/mo
Monthly Cost

All Circuits

{% if circuits %} {% for c in circuits %} {% endfor %}
Circuit IDCarrierTypeBWCustomerA-SideZ-SideStatusCost/moContract EndActions
{{ c.circuit_id }} {{ c.carrier }} {{ c.circuit_type }} {{ c.bandwidth }} {{ c.customer }} {{ c.handoff_a }} {{ c.handoff_z }} {{ c.install_status }} ${{ (c.monthly_cost_usd or 0)|round(0)|int }} {{ (c.contract_end or '')[:10] }}
{% else %}

No circuits yet. Click "+ New Circuit" to add one.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}