{% extends "django_openstack/nova/volumes/base.html" %} {% block title %} - Cloud Computing{% endblock %} {% block content %} {% include "django_openstack/_messages.html" %} {% if volumes %} {% for volume in volumes %} {% if volume.attachment_state == "attached" %} {% else %} {% endif %} {% endfor %}
ID Size Status
{{ volume.id }} {{ volume.displayName }} {{ volume.size }}GB {% if volume.status == "in-use" %} {% if volume.attachment_state == "attached" %} attached: {{ volume.attach_data.instance_id }} {% else %} {{ volume.attachment_state }} {% endif %} {% else %} {{ volume.status }} {% endif %}
{% csrf_token %}
{% csrf_token %}
{% else %}

No volumes currently exist.

{% endif %}
{% csrf_token %}

Create New Volume

{% include "django_openstack/nova/volumes/_create_form.html" %}
{% csrf_token %}

Attach Volume

{% include "django_openstack/nova/volumes/_attach_form.html" %}
{% endblock %}