summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/volumes/_attach_form.html
blob: 6ad7d603321e87b2c3cf0ed44266a7308eb8f2b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% load i18n %}
<form id="attach_form"  method="post">
  <fieldset>
    {% csrf_token %}
    {% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %}
      {% for field in form.visible_fields %}
      {{ field.label_tag }}
      {{ field.errors }}
      {{ field }}
    {% endfor %}
    <input type="hidden" name="volume_id" value="{{ volume_id }}" />
    <input type="submit" value="{% trans "Attach Volume" %}" class="large-rounded" />
  </fieldset>
</form>