~ubuntu-branches/ubuntu/trusty/horizon/trusty-updates

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/router/nexus1000v/templates/nexus1000v/_create_network_profile.html

  • Committer: Package Import Robot
  • Author(s): Adam Gandelman
  • Date: 2013-09-06 11:59:43 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20130906115943-h3td0l7tp16mb9oc
Tags: 1:2013.2~b3-0ubuntu1
* New upstream release.
* debian/control: Minimum python-openstack-auth version >= 1.1.1.
* debian/control: Add python-troveclient.
* debian/static: Refresh static assets for 2013.2~b3.
* debian/patches: ubuntu_local_settings.patch -> ubuntu_settings.patch, also
  patch location of secret key in openstack_dashboard/settings.py

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 %}create_network_profile_form{% endblock %}
 
6
{% block form_action %}{% url 'horizon:router:nexus1000v:create_network_profile' %}{% endblock %}
 
7
 
 
8
{% block modal_id %}create_network_profile_modal{% endblock %}
 
9
{% block modal-header %}{% trans "Create Network Profile" %}{% 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
    <h3>{% trans "Description" %}:</h3>
 
19
    <p>{% trans "Select a name for your network profile."%}</p>
 
20
</div>
 
21
{% endblock %}
 
22
 
 
23
{% block modal-footer %}
 
24
    <input class="btn btn-primary pull-right" type="submit" value="{% trans "Create Network Profile" %}" />
 
25
    <a href="{% url 'horizon:router:nexus1000v:index' %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
 
26
{% endblock %}