summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/images/_launch_form.html
blob: 8eab67f6930734f5465e66596f6a4186497cc86b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{%load i18n%}
<form id="launch_img" action="" method="post">
  {% csrf_token %}
  <fieldset>
    {% for hidden in form.hidden_fields %}
      {{hidden}}
    {% endfor %}
    {% for field in form.visible_fields %}
      {{field.label_tag}}
      {{field.errors}}
      {{field}}
    {% endfor %}
    {% block submit %}
      <input type="submit" value="{%trans "Launch Instance"%}" />
    {% endblock %}
  </fieldset>
</form>