{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Storage" %} - {{ pool }}{% endblock %} {% block style %} {% endblock %} {% block content %}
{% include 'create_stg_vol_block.html' %}
{% include 'errors_block.html' %} {% include 'messages_block.html' %}
{% trans "Pool name" %}
{{ pool }}
{% trans "Pool type" %}
{% if not type %}{% trans "None" %}{% else %}{{ type }}{% endif %}
{% trans "Pool path" %}
{% if not path %}{% trans "None" %}{% else %}{{ path }}{% endif %}
{% trans "Pool status" %}
{% if not status %}{% trans "None" %}{% else %}{{ status }}{% endif %}
{% trans "Size" %}
{{size|filesizeformat }}
{% trans "Usage" %} ({{ percent }}%)
{{ used|filesizeformat }}
{% trans "State" %}
{% csrf_token %} {% ifequal state 0 %} {% else %} {% endifequal %}
{% trans "Autostart" %}
{% csrf_token %} {% ifequal autostart 0 %} {% else %} {% endifequal %}
{% if state %}
{% if volumes %}
{% for volume in volumes %} {% endfor %}
# {% trans "Name" %} {% trans "Allocated" %} {% trans "Size" %} {% trans "Format" %} {% trans "Action" %}
{{ forloop.counter }} {{ volume.name }} {{ volume.allocation|filesizeformat }} {{ volume.size|filesizeformat }} {{ volume.type }} {% ifnotequal volume.type "iso" %} {% else %} {% endifnotequal %}
{% csrf_token %}
{% else %}
{% trans "Warning" %}: {% trans "Hypervisor doesn't have any Volumes" %}
{% endif %} {% endif %}
{% include 'pleasewaitdialog.html' %} {% endblock %} {% block script %} {% endblock %}