{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Storage" %} - {{ pool }}{% endblock %} {% block style %} {% endblock %} {% block content %}
{% include 'create_stg_vol_block.html' %}

{% trans "Storage:" %} {{ pool }}

{% include 'errors_block.html' %} {% include 'messages_block.html' %}

{% trans "Pool name:" %}

{% trans "Pool type:" %}

{% trans "Pool path:" %}

{% trans "Pool status:" %}

{% trans "Size:" %} ({{ size|filesizeformat }} / {{ used|filesizeformat }})

{% trans "State:" %}

{% trans "Autostart:" %}

{{ pool }}

{% if not type %}{% trans "None" %}{% else %}{{ type }}{% endif %}

{% if not path %}{% trans "None" %}{% else %}{{ path }}{% endif %}

{% if not status %}{% trans "None" %}{% else %}{{ status }}{% endif %}

{% trans "Usage:" %} {{ percent }}%

{% csrf_token %} {% ifequal state 0 %} {% else %} {% endifequal %}

{% 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 %}
{% endblock %} {% block script %} {% endblock %}