{% extends 'generic/object_detail.html' %} {% load helpers %} {% block content_left_page %}
Cluster
Name {{ object.name }}
Type {{ object.type|hyperlinked_object }}
Group {{ object.group|hyperlinked_object }}
Tenant {{ object.tenant|hyperlinked_object }}
Site {{ object.site|hyperlinked_object }}
Location {% include 'dcim/inc/location_hierarchy.html' with location=object.location %}
Virtual Machines {{ object.virtual_machines.count }}
Comments
{% if object.comments %} {{ object.comments|render_markdown }} {% else %} None {% endif %}
{% endblock content_left_page %} {% block content_right_page %}
Host Devices
{% if perms.virtualization.change_cluster %}
{% csrf_token %} {% endif %} {% include 'responsive_table.html' with table=device_table %} {% if perms.virtualization.change_cluster %}
{% endif %}
{% endblock content_right_page %}