summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/volumes/_detach_form.html
blob: 0f383a879a4c2edbb770d8282ac5e39e3f585a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% load i18n %}
<form id="form_detach_{{ attachment.volumeId }}" class="form-delete" method="post">
  {% csrf_token %}
  {% for hidden in form.hidden_fields %}
    {{ hidden }}
  {% endfor %}
  <input name="volume_id" type="hidden" value="{{ attachment.volumeId }}" />
  <input name="instance_id" type="hidden" value="{{ attachment.serverId }}" />
  <input name="attachment_id" type="hidden" value="{{ attachment.id }}" />
  <input id="detach_{{ attachment.volumeId }}" class="detach" title="{% trans "volume" %} {{ attachment.volumeId }} {% trans "from the instance" %} {{ attachment.serverId }}" type="submit" value="{% trans "Detach" %}" />
</form>