{% extends 'generic/object.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block breadcrumbs %}
  • {{ object.type }}
  • {% if object.group %}
  • {{ object.group }}
  • {% endif %}
  • {{ object }}
  • {% endblock %} {% block content %}
    Cluster
    Name {{ object.name }}
    Type {{ object.type }}
    Group {% if object.group %} {{ object.group }} {% else %} None {% endif %}
    Tenant {% if object.tenant %} {{ object.tenant }} {% else %} None {% endif %}
    Site {% if object.site %} {{ object.site }} {% else %} None {% endif %}
    Virtual Machines {{ object.virtual_machines.count }}
    {% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='virtualization:cluster_list' %}
    Comments
    {% if object.comments %} {{ object.comments|render_markdown }} {% else %} None {% endif %}
    {% plugin_left_page object %}
    Host Devices
    {% if perms.virtualization.change_cluster %}
    {% csrf_token %} {% endif %} {% include 'responsive_table.html' with table=device_table %} {% if perms.virtualization.change_cluster %}
    {% endif %}
    {% plugin_right_page object %}
    {% plugin_full_width_page object %}
    {% endblock %}