~ubuntu-branches/ubuntu/precise/horizon/precise-updates

« back to all changes in this revision

Viewing changes to .pc/git-2012.1~e2~20111201.1077.patch/horizon/horizon/dashboards/nova/templates/nova/ports/_create.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-09 16:18:55 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111209161855-nguyenpghx2o2lqy
Tags: 2012.1~e2~20111209.1104-0ubuntu1
* New upstream release.
* Refreshed patches.
* debian/docs: Removed README

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<form id="create_port_form" method="post">
2
 
  {% csrf_token %}
3
 
  {% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %}
4
 
    {% for field in form.visible_fields %}
5
 
    {{ field.label_tag }}
6
 
    {{ field.errors }}
7
 
    {{ field }}
8
 
  {% endfor %}
9
 
  <input name="network" type="hidden" value="{{network_id}}" />
10
 
  <input type="submit" value="Create Ports" class="large-rounded" />
11
 
</form>