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

{{ provider }}

Provider
ASN {% if provider.asn %} {{ provider.asn }} {% else %} N/A {% endif %}
Account {% if provider.account %} {{ provider.account }} {% else %} N/A {% endif %}
Customer Portal {% if provider.portal_url %} {{ provider.portal_url }} {% else %} N/A {% endif %}
NOC Contact {% if provider.noc_contact %} {{ provider.noc_contact|linebreaksbr }} {% else %} N/A {% endif %}
Admin Contact {% if provider.admin_contact %} {{ provider.admin_contact|linebreaksbr }} {% else %} N/A {% endif %}
{% with provider.get_custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
Comments
{% if provider.comments %} {{ provider.comments|gfm }} {% else %} None {% endif %}
{% include 'inc/created_updated.html' with obj=provider %}
Circuits
{% for c in circuits %} {% empty %} {% endfor %}
{{ c.cid }} {{ c.site }} {% if c.interface %} {{ c.interface.device }} {% endif %} {{ c.port_speed_human }}
None
{% include 'inc/graphs_modal.html' %} {% endblock %} {% block javascript %} {% endblock %}