2017-08-04 17:02:52 -04:00
|
|
|
{% extends '_base.html' %}
|
2018-02-02 16:12:57 -05:00
|
|
|
{% load buttons %}
|
2017-08-04 17:02:52 -04:00
|
|
|
|
|
|
|
{% block content %}
|
2019-03-05 15:42:47 -06:00
|
|
|
<div class="pull-right noprint">
|
2017-08-04 17:02:52 -04:00
|
|
|
{% if perms.virtualization.add_clustergroup %}
|
2018-02-02 16:12:57 -05:00
|
|
|
{% add_button 'virtualization:clustergroup_add' %}
|
|
|
|
{% import_button 'virtualization:clustergroup_import' %}
|
2017-08-04 17:02:52 -04:00
|
|
|
{% endif %}
|
2018-02-02 16:12:57 -05:00
|
|
|
{% export_button content_type %}
|
2017-08-04 17:02:52 -04:00
|
|
|
</div>
|
|
|
|
<h1>{% block title %}Cluster Groups{% endblock %}</h1>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
{% include 'utilities/obj_table.html' with bulk_delete_url='virtualization:clustergroup_bulk_delete' %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|