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

« back to all changes in this revision

Viewing changes to horizon/dashboards/nova/networks/templates/networks/_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_network_form{% endblock %}
5
 
{% block form_action %}{% url horizon:nova:networks:create %}{% endblock %}
6
 
 
7
 
{% block modal-header %}{% trans "Create Network" %}{% 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 "Select a name for your network."%}</p>
18
 
</div>
19
 
{% endblock %}
20
 
 
21
 
{% block modal-footer %}
22
 
  <input class="btn btn-primary pull-right" type="submit" value="{% trans "Create Network" %}" />
23
 
  <a href="{% url horizon:nova:networks:index %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
24
 
{% endblock %}