~ubuntu-branches/ubuntu/vivid/horizon/vivid-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): James Page, Chris Johnston, James Page
  • Date: 2014-10-03 17:54:18 UTC
  • mfrom: (0.3.1) (1.2.2)
  • Revision ID: package-import@ubuntu.com-20141003175418-wuk513xcytndqft7
Tags: 1:2014.2~rc1-0ubuntu1
[ Chris Johnston ]
* d/theme/css/ubuntu.css: Fix Ubuntu theme for Instances "more" dropdown
  (LP: #1308651).

[ James Page ]
* New upstream release candidate:
  - d/p/*: Refresh.
* d/watch: Use tarballs.openstack.org for upstream releases. 

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:flavors:extras:edit' flavor.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>{% blocktrans %}Update the "extra spec" value for &quot;{{ key }}&quot;{% endblocktrans %}</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:flavors:extras:index' flavor.id %}" class="btn btn-default secondary cancel close">{% trans "Cancel" %}</a>
27
 
{% endblock %}
28