{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% load perms %} {% block controls %} {{ block.super }} {% endblock controls %} {% block breadcrumbs %} {{ block.super }} {% endblock %} {% block tabs %} {{ block.super }} {% endblock %} {% block content %}
Volume Group
Name {{ object.vg_name }}
Total Storage (GB) {{ object.description }}
Total available Storage (GB) {{ object.description }}
Amount of Physical Volumes {{ object.description }}
Amount of Logical Volumes {{ object.description }}
Description {{ object.description }}
{% include 'inc/panels/custom_fields.html' %}
Physical Volumes
{% render_table physical_volumes_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=physical_volumes_table.paginator page=physical_volumes_table.page %}
Logical Volumes
{% render_table logical_volumes_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=logical_volumes_table.paginator page=logical_volumes_table.page %}
{% endblock %}