{% load i18n %} {% load sizefieldtags %} {% load crispy_forms_tags %}
{% trans "Modify the resources" %}
{% csrf_token %} {{ resources_form.flavor|as_crispy_field }}

{% include "dashboard/vm-detail/_disk-operations.html" %}
{% trans "Disks" %}

{% if not instance.disks.all %} {% trans "No disks are added." %} {% endif %} {% for d in instance.disks.all %}

{% with long_remove=True %} {% include "dashboard/_disk-list-element.html" %} {% endwith %}

{% endfor %}

{% if instance.disks.all %}
{% url "info.resize" as resize_url %} {% blocktrans with url=resize_url %} If you need help resizing the disks check out our resize how-to. {% endblocktrans %}
{% endif %} {% if user.is_superuser %}

{% trans "Required traits" %}

{% crispy traits_form %}

{% trans "Raw data" %}

{% crispy raw_data_form %}
{% endif %} {% block extra_js %} {% endblock %}