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

« back to all changes in this revision

Viewing changes to horizon/horizon/dashboards/nova/templates/nova/instances_and_volumes/volumes/_attach.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
{% extends "horizon/common/_modal_form.html" %}
 
2
{% load i18n %}
 
3
 
 
4
{% block form_id %}attach_volume_form{% endblock %}
 
5
{% block form_action %}{% url horizon:nova:instances_and_volumes:volumes:attach volume_id %}{% endblock %}
 
6
 
 
7
{% block modal_id %}attach_volume_modal{% endblock %}
 
8
{% block modal-header %}{%trans "Attach Volume"%}{% endblock %}
 
9
 
 
10
{% block modal-body %}
 
11
<div class="left">
 
12
    <fieldset>
 
13
    {% include "horizon/common/_form_fields.html" %}
 
14
    </fieldset>
 
15
</div>
 
16
<div class="right">
 
17
  <h3>{% trans "Description" %}:</h3>
 
18
  <p>{% trans "Attach a volume to an instance." %}</p>
 
19
</div>
 
20
{% endblock %}
 
21
 
 
22
{% block modal-footer %}
 
23
    <input class="btn primary pull-right" type="submit" value="{%trans "Attach Volume"%}" />
 
24
    <a href="{% url horizon:nova:instances_and_volumes:volumes:index %}" class="btn secondary cancel close">Cancel</a>
 
25
{% endblock %}