~ubuntu-branches/ubuntu/raring/horizon/raring

« back to all changes in this revision

Viewing changes to horizon/dashboards/syspanel/flavors/templates/flavors/_create.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, Chuck Short
  • Date: 2012-11-23 08:49:14 UTC
  • mfrom: (1.1.22)
  • Revision ID: package-import@ubuntu.com-20121123084914-95m0mzmiicdw64ti
Tags: 2013.1~g1-0ubuntu1
[ Adam Gandelman ]
* debian/patches/add_juju_settings_pannel.patch: Disable during
  Grizzly dev. cycle. 

[ Chuck Short ]
* New upstream relase.
* Refreshed patches.

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 %}create_flavor_form{% endblock %}
5
 
{% block form_action %}{% url horizon:syspanel:flavors:create %}{% endblock %}
6
 
 
7
 
{% block modal_id %}create_flavor_modal{% endblock %}
8
 
{% block modal-header %}{% trans "Create Flavor" %}{% 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 "From here you can define the sizing of a new flavor." %}</p>
19
 
</div>
20
 
{% endblock %}
21
 
 
22
 
{% block modal-footer %}
23
 
  <input class="btn btn-primary pull-right" type="submit" value="{% trans "Create Flavor" %}" />
24
 
  <a href="{% url horizon:syspanel:flavors:index %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
25
 
{% endblock %}