summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/instances/_form.html
blob: 5e267eff3a901963e5550cfb4d48a88b19877c76 (plain)
1
2
3
4
5
6
7
8
9
10
11
{%load i18n%}
<form id="tenant_form" method="post">
  {% csrf_token %}
  {% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %}
    {% for field in form.visible_fields %}
    {{ field.label_tag }}
    {{ field.errors }}
    {{ field }}
  {% endfor %}
  <input type="submit" value="{%trans "Update Instance"%}" class="large-rounded" />
</form>