~ubuntu-branches/ubuntu/precise/horizon/precise-updates

« back to all changes in this revision

Viewing changes to horizon/horizon/dashboards/nova/templates/nova/volumes/_delete.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-16 16:34:56 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20111216163456-ts9ldy8skhsg0scb
Tags: 2012.1~e2-0ubuntu1
* New upstream release (LP: #904039)
* debian/control: Update build-depends.
* debian/watch: Fix to fetch from Launchpad ad well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% load i18n %}
2
 
<form id="form_delete_{{ volume.id }}" class="form-delete" method="post">
3
 
  {% csrf_token %}
4
 
  {% for hidden in form.hidden_fields %}
5
 
    {{ hidden }}
6
 
  {% endfor %}
7
 
  <input name="volume_id" type="hidden" value="{{ volume.id }}" />
8
 
  <input name="volume_name" type="hidden" value="{{ volume.displayName }}" />
9
 
  <input id="delete_{{ volume.id }}" class="btn small danger delete" title="Volume: {{ volume.displayName }}" type="submit" value="{% trans "Delete" %}" />
10
 
</form>