summaryrefslogtreecommitdiff
path: root/horizon/templates/horizon/common/_form_fields.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/templates/horizon/common/_form_fields.html')
-rw-r--r--horizon/templates/horizon/common/_form_fields.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/horizon/templates/horizon/common/_form_fields.html b/horizon/templates/horizon/common/_form_fields.html
deleted file mode 100644
index 21a9abdf..00000000
--- a/horizon/templates/horizon/common/_form_fields.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% for hidden in form.hidden_fields %}
- {{ hidden }}
-{% endfor %}
-{% if form.non_field_errors %}
- <div class="alert alert-message alert-error">
- {{ form.non_field_errors }}
- </div>
-{% endif %}
-{% for field in form.visible_fields %}
- <div class="control-group form-field clearfix{% if field.errors %} error{% endif %}">
- {{ field.label_tag }}
- {% if field.errors %}
- {% for error in field.errors %}
- <span class="help-inline">{{ error }}</span>
- {% endfor %}
- {% endif %}
- <span class="help-block">{{ field.help_text }}</span>
- <div class="input">
- {{ field }}
- </div>
- </div>
-{% endfor %}