~lutostag/ubuntu/utopic/maas/1.5.2

« back to all changes in this revision

Viewing changes to src/maasserver/templates/maasserver/network_edit.html

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez, Dustin Kirkland, Andres Rodriguez
  • Date: 2014-01-31 09:38:51 UTC
  • mfrom: (1.2.21)
  • Revision ID: package-import@ubuntu.com-20140131093851-0jd8i9q57uxqxk3i
Tags: 1.5+bzr1909-0ubuntu1
* New upstream release.

[ Dustin Kirkland ]
* debian/maas-region-controller-min.postinst: Fix typo in sed. Remove
  double quotes. (LP: #1274448)

[ Andres Rodriguez ]
* debian/control: Add depends on python-crochet.
* Get rid of dfsg on the versioning as we no longer strip any code from
  the orig tarball.
  - debian/rules: Do not strip any files out of the tarball.
* debian/patches/*: Refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "maasserver/base.html" %}
 
2
 
 
3
{% block nav-active-settings %}active{% endblock %}
 
4
{% block title %}Edit network{% endblock %}
 
5
{% block page-title %}Edit network{% endblock %}
 
6
 
 
7
{% block content %}
 
8
<div class="block size10 first">
 
9
    <form action="." method="post" class="block">
 
10
      {% csrf_token %}
 
11
      <ul>
 
12
      {% for field in form %}
 
13
        {% include "maasserver/form_field.html" %}
 
14
      {% endfor %}
 
15
      </ul>
 
16
      <input type="submit" value="Save network"
 
17
             class="button right" />
 
18
      <a class="link-button" href="{% url 'network-list' %}">Cancel</a>
 
19
</div>
 
20
{% endblock %}