{% extends 'base.html' %} {% load buttons %} {% load static %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% plugin_buttons object %} {% if perms.circuits.add_provider %} {% clone_button object %} {% endif %} {% if perms.circuits.change_provider %} {% edit_button object %} {% endif %} {% if perms.circuits.delete_provider %} {% delete_button object %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' with obj=object %}
{% custom_links object %}
{% endblock %} {% 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/custom_fields_panel.html' with obj=object %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='circuits:object_list' %}
Comments
{% if object.comments %} {{ object.comments|render_markdown }} {% else %} None {% endif %}
{% plugin_left_page object %}
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 %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}