{% extends 'generic/object.html' %} {% 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 %}
Circuit Type
Name {{ object.name }}
Description {{ object.description|placeholder }}
Circuits {{ circuits_table.rows|length }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% include 'inc/panels/custom_fields.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 %}