{% extends '_base.html' %} {% load helpers %} {% block content %}
{% if perms.virtualization.change_cluster %} Edit this cluster {% endif %} {% if perms.dcim.delete_cluster %} Delete this cluster {% endif %}

{% block title %}{{ cluster }}{% endblock %}

{% include 'inc/created_updated.html' with obj=cluster %}
Cluster
Name {{ cluster.name }}
Type {{ cluster.type }}
Group {% if cluster.group %} {{ cluster.group }} {% else %} None {% endif %}
Virtual Machines {{ cluster.virtual_machines.count }}
{% include 'inc/custom_fields_panel.html' with custom_fields=cluster.get_custom_fields %}
Comments
{% if cluster.comments %} {{ cluster.comments|gfm }} {% else %} None {% endif %}
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 %}