summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/templates/infrastructure/nodes/_nodes_formset_field.html
diff options
context:
space:
mode:
Diffstat (limited to 'tuskar_ui/infrastructure/templates/infrastructure/nodes/_nodes_formset_field.html')
-rw-r--r--tuskar_ui/infrastructure/templates/infrastructure/nodes/_nodes_formset_field.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/tuskar_ui/infrastructure/templates/infrastructure/nodes/_nodes_formset_field.html b/tuskar_ui/infrastructure/templates/infrastructure/nodes/_nodes_formset_field.html
deleted file mode 100644
index 1b1c489a..00000000
--- a/tuskar_ui/infrastructure/templates/infrastructure/nodes/_nodes_formset_field.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{% load form_helpers %}
-<div class="form-group">
- <div class="row{% if field.errors %} error{% endif %}{% if required or field.required %} required{% endif %}">
- <label class="col-xs-4">{{ field.label }}</label>
- <div class="col-xs-6">{{ field|add_bootstrap_class }}</div>
- <div class="col-xs-2 muted">{{ extra_text|default:'' }}</div>
- </div>
- {% if field.errors %}
- <div class="error">
- {% for error in field.errors %}
- <span class="text-danger">{{ error }}</span>
- {% endfor %}
- </div>
- {% endif %}
-</div>