~ubuntu-branches/ubuntu/utopic/horizon/utopic

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/admin/volumes/templates/volumes/extras/_edit.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-07-25 11:39:09 UTC
  • mfrom: (1.1.42)
  • Revision ID: package-import@ubuntu.com-20140725113909-b8920pdy87itn1ro
Tags: 1:2014.2~b2-0ubuntu1
* New upstream release.
* debian/patches/ubuntu_settings.patch: Refresed
* debian/patches/fix-dashboard-manage.patch: Refreshed
* debian/patches/fix-dashboard-django-wsgi.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "horizon/common/_modal_form.html" %}
 
2
{% load i18n %}
 
3
{% load url from future %}
 
4
 
 
5
{% block form_id %}extra_spec_edit_form{% endblock %}
 
6
{% block form_action %}{% url 'horizon:admin:volumes:extras:edit' vol_type.id key %}{% endblock %}
 
7
 
 
8
 
 
9
{% block modal_id %}extra_spec_edit_modal{% endblock %}
 
10
{% block modal-header %}{% trans "Edit Extra Spec Value" %}: {{ key }}{% endblock %}
 
11
 
 
12
{% block modal-body %}
 
13
<div class="left">
 
14
    <fieldset>
 
15
    {% include "horizon/common/_form_fields.html" %}
 
16
    </fieldset>
 
17
</div>
 
18
<div class="right">
 
19
    <h3>{% trans "Description" %}:</h3>
 
20
    <p>{% trans 'Update the "extra spec" value for' %} &quot;{{ key }}&quot;</p>
 
21
</div>
 
22
{% endblock %}
 
23
 
 
24
{% block modal-footer %}
 
25
  <input class="btn btn-primary pull-right" type="submit" value="{% trans "Save" %}" />
 
26
  <a href="{% url 'horizon:admin:volumes:extras:index' vol_type.id %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
 
27
{% endblock %}
 
28