|
@@ -3,33 +3,35 @@
|
|
|
{% load plugins %}
|
|
{% load plugins %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
{% block breadcrumbs %}
|
|
|
- <li><a href="{% url 'virtualization:clustertype_list' %}">Cluster Types</a></li>
|
|
|
|
|
- <li>{{ object }}</li>
|
|
|
|
|
|
|
+ <li class="breadcrumb-item"><a href="{% url 'virtualization:clustertype_list' %}">Cluster Types</a></li>
|
|
|
|
|
+ <li class="breadcrumb-item">{{ object }}</li>
|
|
|
{% endblock %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
{% block content %}
|
|
|
-<div class="row">
|
|
|
|
|
|
|
+<div class="row mb-3">
|
|
|
<div class="col-md-6">
|
|
<div class="col-md-6">
|
|
|
- <div class="panel panel-default">
|
|
|
|
|
- <div class="panel-heading">
|
|
|
|
|
- <strong>Cluster Type</strong>
|
|
|
|
|
|
|
+ <div class="card">
|
|
|
|
|
+ <h5 class="card-header">
|
|
|
|
|
+ Cluster Type
|
|
|
|
|
+ </h5>
|
|
|
|
|
+ <div class="card-body">
|
|
|
|
|
+ <table class="table table-hover card-body attr-table">
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th scope="row">Name</th>
|
|
|
|
|
+ <td>{{ object.name }}</td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th scope="row">Description</th>
|
|
|
|
|
+ <td>{{ object.description|placeholder }}</td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th scope="row">Clusters</th>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <a href="{% url 'virtualization:cluster_list' %}?type_id={{ object.pk }}">{{ clusters_table.rows|length }}</a>
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ </table>
|
|
|
</div>
|
|
</div>
|
|
|
- <table class="table table-hover panel-body attr-table">
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Name</td>
|
|
|
|
|
- <td>{{ object.name }}</td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Description</td>
|
|
|
|
|
- <td>{{ object.description|placeholder }}</td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>Clusters</td>
|
|
|
|
|
- <td>
|
|
|
|
|
- <a href="{% url 'virtualization:cluster_list' %}?type_id={{ object.pk }}">{{ clusters_table.rows|length }}</a>
|
|
|
|
|
- </td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- </table>
|
|
|
|
|
</div>
|
|
</div>
|
|
|
{% plugin_left_page object %}
|
|
{% plugin_left_page object %}
|
|
|
</div>
|
|
</div>
|
|
@@ -40,15 +42,17 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="row">
|
|
<div class="row">
|
|
|
<div class="col-md-12">
|
|
<div class="col-md-12">
|
|
|
- <div class="panel panel-default">
|
|
|
|
|
- <div class="panel-heading">
|
|
|
|
|
- <strong>Clusters</strong>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="card">
|
|
|
|
|
+ <h5 class="card-header">
|
|
|
|
|
+ Clusters
|
|
|
|
|
+ </h5>
|
|
|
|
|
+ <div class="card-body">
|
|
|
{% include 'inc/table.html' with table=clusters_table %}
|
|
{% include 'inc/table.html' with table=clusters_table %}
|
|
|
|
|
+ </div>
|
|
|
{% if perms.virtualization.add_cluster %}
|
|
{% if perms.virtualization.add_cluster %}
|
|
|
- <div class="panel-footer text-right noprint">
|
|
|
|
|
- <a href="{% url 'virtualization:cluster_add' %}?type={{ object.pk }}" class="btn btn-xs btn-primary">
|
|
|
|
|
- <span class="mdi mdi-plus-thick" aria-hidden="true"></span> Add cluster
|
|
|
|
|
|
|
+ <div class="card-footer text-end noprint">
|
|
|
|
|
+ <a href="{% url 'virtualization:cluster_add' %}?type={{ object.pk }}" class="btn btn-sm btn-primary">
|
|
|
|
|
+ <span class="mdi mdi-plus-thick" aria-hidden="true"></span> Add Cluster
|
|
|
</a>
|
|
</a>
|
|
|
</div>
|
|
</div>
|
|
|
{% endif %}
|
|
{% endif %}
|