summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/syspanel/templates/syspanel/images/_form.html
blob: c2c5e7dded34f2605a7f7a4d80a104e5c9ecdd4c (plain)
1
2
3
4
5
6
7
8
9
10
11
{%load i18n%}
<form id="image_form" action="" 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 Image"%}" class="large-rounded" />
</form>