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

« back to all changes in this revision

Viewing changes to horizon/dashboards/nova/templates/nova/networks/_rename.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-03-09 11:50:22 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20120309115022-ymiww5i58rbg97my
Tags: 2012.1~rc1~20120308.1479-0ubuntu1
* New upstream version.
* debian/rules: Fix symlink when installing horizon.
  (LP: #947118)
* debian/control: Add python-django-nose as a dep. (LP: #944235)
* debian/control: Fix broken depends.

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 %}form_rename_{{ network.id }}{% endblock %}
5
 
{% block form_action %}{% url horizon:nova:networks:rename network.id %}{% endblock %}
6
 
 
7
 
{% block modal-header %}Rename 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 "Rename" %}:</h3>
17
 
    <p>{% trans "Enter a new 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 "Rename Network" %}" />
23
 
    <a href="{% url horizon:nova:networks:index %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
24
 
{% endblock %}