{% extends 'virtualization/cluster/base.html' %}
{% load helpers %}
{% load plugins %}
{% load i18n %}
{% block content %}
| {% trans "Name" %} |
{{ object.name }} |
| {% trans "Type" %} |
{{ object.type|linkify }} |
| {% trans "Status" %} |
{% badge object.get_status_display bg_color=object.get_status_color %} |
| {% trans "Description" %} |
{{ object.description|placeholder }} |
| {% trans "Group" %} |
{{ object.group|linkify|placeholder }} |
| {% trans "Tenant" %} |
{% if object.tenant.group %}
{{ object.tenant.group|linkify }} /
{% endif %}
{{ object.tenant|linkify|placeholder }}
|
| {% trans "Site" %} |
{{ object.site|linkify|placeholder }} |
{% include 'inc/panels/comments.html' %}
{% plugin_left_page object %}
| {% trans "Virtual CPUs" %} |
{{ vcpus_sum|placeholder }} |
| {% trans "Memory" %} |
{% if memory_sum %}
{{ memory_sum|humanize_megabytes }}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
| {% trans "Disk Space" %} |
{% if disk_sum %}
{{ disk_sum }} {% trans "GB" context "Abbreviation for gigabyte" %}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}