{% extends 'generic/object.html' %} {% load static %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block extra_controls %} {% if perms.circuits.add_circuit %} Add circuit {% endif %} {% endblock extra_controls %} {% block content %}
Provider
ASN {{ object.asn|placeholder }}
Account {{ object.account|placeholder }}
Customer Portal {% if object.portal_url %} {{ object.portal_url }} {% else %} {% endif %}
NOC Contact {{ object.noc_contact|render_markdown|placeholder }}
Admin Contact {{ object.admin_contact|render_markdown|placeholder }}
Circuits {{ circuits_table.rows|length }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/comments.html' %} {% include 'inc/panels/contacts.html' %} {% plugin_right_page object %}
Circuits
{% render_table circuits_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=circuits_table.paginator page=circuits_table.page %}
{% plugin_full_width_page object %}
{% endblock %}