~ubuntu-branches/ubuntu/quantal/horizon/quantal

« back to all changes in this revision

Viewing changes to horizon/dashboards/nova/networks/templates/networks/subnets/_update.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Adam Gandelman
  • Date: 2012-08-16 14:01:33 UTC
  • mfrom: (1.1.17)
  • Revision ID: package-import@ubuntu.com-20120816140133-8b0f0fobvtg7wm0j
Tags: 2012.2~f3-0ubuntu1
[ Chuck Short ]
* New upstream release.
* debian/patches/fix-ubuntu-tests.patch: Fix test suites again to
  run during the builds.
* debian/watch: Update.
* debian/control: Add python-glanceclient. (LP: #1030911)
* debian/openstack-dashboard.conf: Don't hijack apache's webroot. (LP:
  #1020313)
* debian/control: Update horizon deps to reflect reality.

[ Adam Gandelman ]
* debian/control: Bump required python-django version to 1.4.
* wrap-and-sort.
* Fix (LP: #1036571):
    - debian/rules, openstack-dashboard.{links, dirs, postinst}: Add required
      symlinks and directories to allow Horizon to function with the packaged
      lessc.
    - debian/control: Add python-{cinder, swift, quantum}client,
      python-django-openstack-auth, python-netaddr, python-compressor, lessc.
* debian/rules: Improve dh_auto_clean.

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 %}update_subnet_form{% endblock %}
 
5
{% block form_action %}{% url horizon:nova:networks:editsubnet network_id subnet_id %}{% endblock %}
 
6
 
 
7
{% block modal-header %}{% trans "Edit Subnet" %}{% endblock %}
 
8
 
 
9
{% block modal-body %}
 
10
<div class="left">
 
11
    <dl>
 
12
      <dt>{% trans "ID" %}</dt>
 
13
      <dd>{{ subnet_id }}</dd>
 
14
      <dt>{% trans "Network Address" %}</dt>
 
15
      <dd>{{ cidr }}</dd>
 
16
      <dt>{% trans "IP version" %}</dt>
 
17
      <dd>{{ ip_version }}</dd>
 
18
    </dl>
 
19
    <hr>
 
20
    <fieldset>
 
21
    {% include "horizon/common/_form_fields.html" %}
 
22
    </fieldset>
 
23
</div>
 
24
<div class="right">
 
25
    <h3>{% trans "Description:" %}</h3>
 
26
    <p>{% trans "You may update the editable properties of your subnet here." %}</p>
 
27
</div>
 
28
{% endblock %}
 
29
 
 
30
{% block modal-footer %}
 
31
  <input class="btn btn-primary pull-right" type="submit" value="{% trans "Save Changes" %}" />
 
32
  <a href="{% url horizon:nova:networks:detail network_id %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
 
33
{% endblock %}