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

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/databases/templates/databases/_resize_instance.html

  • Committer: Package Import Robot
  • Author(s): Corey Bryant, Corey Bryant, James Page
  • Date: 2015-02-16 13:50:29 UTC
  • mfrom: (0.10.1) (1.2.6)
  • Revision ID: package-import@ubuntu.com-20150216135029-m632ppq5etw9te0c
Tags: 1:2015.1~b2-0ubuntu1
[ Corey Bryant ]
* New upstream release.
  - d/control: Align with upstream dependencies.
  - d/p/embedded-xstatic.patch: Refreshed. Code moved to new files.
  - d/p/fix-requirements.patch: Added to drop selenium dependency.

[ James Page ]
* d/bundle-xstatic.sh: Use --system flag when generating xstatic
  assets.

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 %}resize_instance_form{% endblock %}
 
6
{% block form_action %}{% url "horizon:project:databases:resize_instance" instance_id %}{% endblock %}
 
7
 
 
8
{% block modal_id %}resize_instance_modal{% endblock %}
 
9
{% block modal-header %}{% trans "Resize Database Instance" %}{% endblock %}
 
10
 
 
11
{% block modal-body %}
 
12
<div class="left">
 
13
  <fieldset>
 
14
  {% include "horizon/common/_form_fields.html" %}
 
15
  </fieldset>
 
16
</div>
 
17
<div class="right">
 
18
  <p>{% blocktrans %}Specify a new flavor for the database instance.{% endblocktrans %}</p>
 
19
</div>
 
20
{% endblock %}
 
21
 
 
22
{% block modal-footer %}
 
23
  <input class="btn btn-primary pull-right" type="submit" value="{% trans "Resize Database Instance" %}" />
 
24
  <a href="{% url "horizon:project:databases:index" %}" class="btn btn-default secondary cancel close">{% trans "Cancel" %}</a>
 
25
{% endblock %}
 
26