{% extends 'cluster_assignment/base.html' %}
{% load render_table from django_tables2 %}
{% load helpers %}
{% load plugins %}
{% block content %}
Name |
{{ object.name|linkify|placeholder }} |
Type |
{{ object.type }} |
Contact |
{{ object.contact|linkify|placeholder }} |
Raw Size |
{{ object.raw_size }} |
Used Size |
{{ object.used_size }} |
Device Count |
{{ object.devices.count }} |
VM Count |
{{ object.virtualmachine.count }} |
Description |
{{ object.description|placeholder }} |
{% include 'inc/panels/comments.html' %}
Virtual CPUs |
{{ instance_resource.vcpus_sum|placeholder }} |
Memory |
{% if instance_resource.memory_sum %}
{{ instance_resource.memory_sum|humanize_megabytes }}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
Disk Space |
{% if instance_resource.disk_sum %}
{{ instance_resource.disk_sum }} GB
{% else %}
{{ ''|placeholder }}
{% endif %}
|
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% render_table pool_table 'inc/table.html' %}
{% include 'inc/paginator.html' with paginator=pool_table.paginator page=pool_table.page %}
{% endblock content %}