{% extends 'generic/object_detail.html' %} {% load helpers %} {% block content_left_page %}
Role
Name {{ object.name }}
Weight {{ object.weight|placeholder }}
Content Type(s)
    {% for ct in content_types %}
  • {{ ct }}
  • {% endfor %}
Color  
Description {{ object.description|placeholder }}
{% endblock content_left_page %} {% block content_full_width_page %}
Devices
{% include 'inc/table.html' with table=device_table %} {% if perms.ipam.add_device %} {% endif %}
{% include 'inc/paginator.html' with paginator=vlan_table.paginator page=device_table.page %}
IP Addresses
{% include 'inc/table.html' with table=ipaddress_table %} {% if perms.ipam.add_ipaddress %} {% endif %}
{% include 'inc/paginator.html' with paginator=vlan_table.paginator page=ipaddress_table.page %}
Prefixes
{% include 'inc/table.html' with table=prefix_table %} {% if perms.ipam.add_prefix %} {% endif %}
{% include 'inc/paginator.html' with paginator=vlan_table.paginator page=prefix_table.page %}
Virtual Machines
{% include 'inc/table.html' with table=virtual_machine_table %} {% if perms.virtualization.add_virtualmachine %} {% endif %}
{% include 'inc/paginator.html' with paginator=vlan_table.paginator page=virtual_machine_table.page %}
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 %}
{% endblock content_full_width_page %}