{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block extra_controls %} {% if perms.ipam.add_prefix %} Add Prefix {% endif %} {% endblock extra_controls %} {% block content %}
Role
Name {{ object.name }}
Description {{ object.description|placeholder }}
Weight {{ object.weight }}
Prefixes {{ prefixes_table.rows|length }}
IP Ranges {% with ipranges_count=object.ip_ranges.count %} {% if ipranges_count %} {{ ipranges_count }} {% else %} {{ ''|placeholder }} {% endif %} {% endwith %}
VLANs {% with vlans_count=object.vlans.count %} {% if vlans_count %} {{ vlans_count }} {% else %} {{ ''|placeholder }} {% endif %} {% endwith %}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_right_page object %}
Prefixes
{% render_table prefixes_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=prefixes_table.paginator page=prefixes_table.page %}
{% plugin_full_width_page object %}
{% endblock %}