{% 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.ipam.add_role %} {% clone_button object %} {% endif %} {% if perms.ipam.change_role %} {% edit_button object %} {% endif %} {% if perms.ipam.delete_role %} {% delete_button object %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Role
Description {{ object.description|placeholder }}
Weight {{ object.weight }}
Prefixes {{ prefix_table.rows|length }}
VLANs {{ vlan_table.rows|length }}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% plugin_left_page object %}
Prefixes
{% include 'inc/table.html' with table=prefix_table %} {% if perms.ipam.add_prefix %} {% endif %}
VLANs
{% include 'inc/table.html' with table=vlan_table %} {% if perms.ipam.add_vlan %} {% endif %}
{% include 'inc/paginator.html' with paginator=vlan_table.paginator page=vlan_table.page %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}