Closes #5425: Create separate tabs for VMs and devices under the cluster view

This commit is contained in:
Jeremy Stretch
2021-03-29 14:55:17 -04:00
parent 8fa37d3ec8
commit b070be1c41
9 changed files with 214 additions and 111 deletions

View File

@@ -0,0 +1,15 @@
{% extends 'virtualization/cluster/base.html' %}
{% load helpers %}
{% block content %}
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<strong>Virtual Machines</strong>
</div>
{% include 'responsive_table.html' with table=virtualmachines_table %}
</div>
</div>
</div>
{% endblock %}