{% extends 'generic/object_retrieve.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 %} {% if device_table %}
Devices
{% include 'inc/table.html' with table=device_table %} {% if perms.dcim.add_device %} {% endif %}
{% include 'inc/paginator.html' with paginator=device_table.paginator page=device_table.page %} {% endif %} {% if interface_table %}
Interfaces
{% include 'inc/table.html' with table=interface_table %} {% if perms.dcim.add_interface %} {% endif %}
{% include 'inc/paginator.html' with paginator=interface_table.paginator page=interface_table.page %} {% endif %} {% if rack_table %}
Racks
{% include 'inc/table.html' with table=rack_table %} {% if perms.dcim.add_rack %} {% endif %}
{% include 'inc/paginator.html' with paginator=rack_table.paginator page=rack_table.page %} {% endif %} {% if ipaddress_table %}
IP Addresses
{% include 'inc/table.html' with table=ipaddress_table %} {% if perms.ipam.add_ipaddress %} {% endif %}
{% include 'inc/paginator.html' with paginator=ipaddress_table.paginator page=ipaddress_table.page %} {% endif %} {% if prefix_table %}
Prefixes
{% include 'inc/table.html' with table=prefix_table %} {% if perms.ipam.add_prefix %} {% endif %}
{% include 'inc/paginator.html' with paginator=prefix_table.paginator page=prefix_table.page %} {% endif %} {% if virtual_machine_table %}
Virtual Machines
{% include 'inc/table.html' with table=virtual_machine_table %} {% if perms.virtualization.add_virtualmachine %} {% endif %}
{% include 'inc/paginator.html' with paginator=virtual_machine_table.paginator page=virtual_machine_table.page %} {% endif %} {% if vminterface_table %}
VM Interfaces
{% include 'inc/table.html' with table=vminterface_table %} {% if perms.virtualization.add_vminterface %} {% endif %}
{% include 'inc/paginator.html' with paginator=vminterface_table.paginator page=vminterface_table.page %} {% endif %} {% if vlan_table %}
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 %} {% endif %}
{% if controller_table %}
Controllers
{% include 'inc/table.html' with table=controller_table %} {% if perms.dcim.add_controller %} {% endif %}
{% include 'inc/paginator.html' with paginator=controller_table.paginator page=controller_table.page %} {% endif %} {% if module_table %}
Modules
{% include 'inc/table.html' with table=module_table %} {% if perms.dcim.add_module %} {% endif %}
{% include 'inc/paginator.html' with paginator=module_table.paginator page=module_table.page %} {% endif %} {% if vdc_table %}
Virtual Device Contexts
{% include 'inc/table.html' with table=vdc_table %} {% if perms.dcim.add_virtualdevicecontext %} {% endif %}
{% include 'inc/paginator.html' with paginator=vdc_table.paginator page=vdc_table.page %} {% endif %} {% endblock content_full_width_page %}