Files

91 lines
2.8 KiB
HTML
Raw Permalink Normal View History

{% extends 'virtualization/cluster/base.html' %}
{% load helpers %}
{% load plugins %}
{% load i18n %}
2018-06-14 16:15:14 -04:00
{% block content %}
<div class="row">
2021-07-21 11:20:35 -04:00
<div class="col col-md-6">
<div class="card">
<h5 class="card-header">{% trans "Cluster" %}</h5>
<table class="table table-hover attr-table">
<tr>
<th scope="row">{% trans "Name" %}</th>
<td>{{ object.name }}</td>
</tr>
<tr>
<th scope="row">{% trans "Type" %}</th>
<td>{{ object.type|linkify }}</td>
</tr>
<tr>
<th scope="row">{% trans "Status" %}</th>
<td>{% badge object.get_status_display bg_color=object.get_status_color %}</td>
</tr>
<tr>
<th scope="row">{% trans "Description" %}</th>
<td>{{ object.description|placeholder }}</td>
</tr>
<tr>
<th scope="row">{% trans "Group" %}</th>
<td>{{ object.group|linkify|placeholder }}</td>
</tr>
<tr>
<th scope="row">{% trans "Tenant" %}</th>
<td>
{% if object.tenant.group %}
{{ object.tenant.group|linkify }} /
{% endif %}
{{ object.tenant|linkify|placeholder }}
</td>
</tr>
<tr>
<th scope="row">{% trans "Site" %}</th>
<td>{{ object.site|linkify|placeholder }}</td>
</tr>
</table>
2021-07-21 11:20:35 -04:00
</div>
2021-10-19 14:21:31 -04:00
{% include 'inc/panels/comments.html' %}
2021-07-21 11:20:35 -04:00
{% plugin_left_page object %}
</div>
<div class="col col-md-6">
2022-12-19 14:57:35 +01:00
<div class="card">
<h5 class="card-header">{% trans "Allocated Resources" %}</h5>
<table class="table table-hover attr-table">
<tr>
<th scope="row"><i class="mdi mdi-gauge"></i> {% trans "Virtual CPUs" %}</th>
<td>{{ vcpus_sum|placeholder }}</td>
</tr>
<tr>
<th scope="row"><i class="mdi mdi-chip"></i> {% trans "Memory" %}</th>
<td>
{% if memory_sum %}
{{ memory_sum|humanize_megabytes }}
{% else %}
{{ ''|placeholder }}
{% endif %}
</td>
</tr>
<tr>
<th scope="row"><i class="mdi mdi-harddisk"></i> {% trans "Disk Space" %}</th>
<td>
{% if disk_sum %}
{{ disk_sum }} {% trans "GB" context "Abbreviation for gigabyte" %}
{% else %}
{{ ''|placeholder }}
{% endif %}
</td>
</tr>
</table>
2022-12-19 14:57:35 +01:00
</div>
2021-10-19 14:21:31 -04:00
{% include 'inc/panels/custom_fields.html' %}
2021-10-21 11:23:31 -04:00
{% include 'inc/panels/tags.html' %}
2021-07-21 11:20:35 -04:00
{% plugin_right_page object %}
</div>
</div>
<div class="row">
2021-04-30 15:55:37 -07:00
<div class="col col-md-12">
{% plugin_full_width_page object %}
</div>
</div>
{% endblock %}