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

« back to all changes in this revision

Viewing changes to horizon/horizon/dashboards/nova/templates/nova/images_and_snapshots/images/_update.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 %}update_image_form{% endblock %}
 
5
{% block form_action %}{% url horizon:nova:images_and_snapshots:images:update image.id %}{% endblock %}
 
6
 
 
7
{% block modal-header %}Update Image{% endblock %}
 
8
 
 
9
{% block modal-body %}
 
10
<div class="left">
 
11
    <fieldset>
 
12
    {% include "horizon/common/_form_fields.html" %}
 
13
    </fieldset>
 
14
</div>
 
15
<div class="right">
 
16
    <h3>{% trans "Description:"%}</h3>
 
17
    <p>{% trans "From here you can modify different properties of an image."%}</p>
 
18
</div>
 
19
{% endblock %}
 
20
 
 
21
{% block modal-footer %}
 
22
  <input class="btn primary pull-right" type="submit" value="{%trans "Update Image"%}" />
 
23
  <a href="{% url horizon:nova:images_and_snapshots:images:index %}" class="btn secondary cancel close">Cancel</a>
 
24
{% endblock %}