{% extends '_base.html' %} {% load buttons %} {% load static %} {% load custom_links %} {% load helpers %} {% block title %}{{ provider }}{% endblock %} {% block header %}
{% if show_graphs %} {% endif %} {% if perms.circuits.add_provider %} {% clone_button provider %} {% endif %} {% if perms.circuits.change_provider %} {% edit_button provider %} {% endif %} {% if perms.circuits.delete_provider %} {% delete_button 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
{% include 'inc/table.html' with table=circuits_table %} {% if perms.circuits.add_circuit %} {% endif %}
{% include 'inc/paginator.html' with paginator=circuits_table.paginator page=circuits_table.page %}
{% include 'inc/modal.html' with modal_name='graphs' %} {% endblock %} {% block javascript %} {% endblock %}