Regions |
{% if object.regions.all %}
{% for region in object.regions.all %}
- {{ region|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Sites |
{% if object.sites.all %}
{% for site in object.sites.all %}
- {{ site|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Locations |
{% if object.locations.all %}
{% for location in object.locations.all %}
- {{ location|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Roles |
{% if object.roles.all %}
{% for role in object.roles.all %}
- {{ role }}
{% endfor %}
{% else %}
None
{% endif %}
|
Device Types |
{% if object.device_types.all %}
{% for device_type in object.device_types.all %}
- {{ device_type|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Platforms |
{% if object.platforms.all %}
{% for platform in object.platforms.all %}
- {{ platform|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Cluster Groups |
{% if object.cluster_groups.all %}
{% for cluster_group in object.cluster_groups.all %}
- {{ cluster_group|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Clusters |
{% if object.clusters.all %}
{% for cluster in object.clusters.all %}
- {{ cluster|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Tenant Groups |
{% if object.tenant_groups.all %}
{% for tenant_group in object.tenant_groups.all %}
- {{ tenant_group|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Tenants |
{% if object.tenants.all %}
{% for tenant in object.tenants.all %}
- {{ tenant|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Device Redundancy Groups |
{% if object.device_redundancy_groups.all %}
{% for device_redundancy_group in object.device_redundancy_groups.all %}
- {{ device_redundancy_group|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
Tags |
{% if object.tags.all %}
{% for tag in object.tags.all %}
- {{ tag|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
{% if settings.CONFIG_CONTEXT_DYNAMIC_GROUPS_ENABLED %}
Dynamic Groups |
{% if object.dynamic_groups.all %}
{% for dynamic_group in object.dynamic_groups.all %}
- {{ dynamic_group|hyperlinked_object }}
{% endfor %}
{% else %}
None
{% endif %}
|
{% endif %}