{% extends '_base.html' %} {% load static %} {% load custom_links %} {% load helpers %} {% block title %}{{ provider }}{% endblock %} {% block header %}
{% if show_graphs %} {% endif %} {% if perms.circuits.change_provider %} Edit this provider {% endif %} {% if perms.circuits.delete_provider %} Delete this provider {% endif %}

{{ provider }}

{% include 'inc/created_updated.html' with obj=provider %}
{% custom_links provider %}
{% endblock %} {% block content %}
Provider
ASN {{ provider.asn|placeholder }}
Account {{ provider.account|placeholder }}
Customer Portal {% if provider.portal_url %} {{ provider.portal_url }} {% else %} {% endif %}
NOC Contact {{ provider.noc_contact|gfm|placeholder }}
Admin Contact {{ provider.admin_contact|gfm|placeholder }}
Circuits {{ provider.circuits.count }}
{% include 'inc/custom_fields_panel.html' with obj=provider %} {% include 'extras/inc/tags_panel.html' with tags=provider.tags.all url='circuits:provider_list' %}
Comments
{% if provider.comments %} {{ provider.comments|gfm }} {% else %} None {% endif %}
Circuits
{% for c in circuits %} {% empty %} {% endfor %}
Circuit ID Type Tenant A Side Z Side Description
{{ c.cid }} {{ c.type }} {% if c.tenant %} {{ c.tenant }} {% else %} {% endif %} {% if c.termination_a %} {{ c.termination_a.site }} {% else %} {% endif %} {% if c.termination_z %} {{ c.termination_z.site }} {% else %} {% endif %} {% if c.description %} {{ c.description }} {% else %} {% endif %}
None
{% if perms.circuits.add_circuit %} {% endif %}
{% include 'inc/modal.html' with modal_name='graphs' %} {% endblock %} {% block javascript %} {% endblock %}