diff --git a/sapl/templates/bootstrap3/layout/checkboxselectmultiple.html b/sapl/templates/bootstrap3/layout/checkboxselectmultiple.html deleted file mode 100644 index a7398ab11..000000000 --- a/sapl/templates/bootstrap3/layout/checkboxselectmultiple.html +++ /dev/null @@ -1,14 +0,0 @@ -{% load crispy_forms_filters %} -{% load l10n %} - -
- {% include 'bootstrap3/layout/field_errors_block.html' %} - {% for choice in field.field.choices %} - - {% endfor %} - {% include 'bootstrap3/layout/help_text.html' %} -
diff --git a/sapl/templates/bootstrap3/layout/radioselect.html b/sapl/templates/bootstrap3/layout/radioselect.html deleted file mode 100644 index 5ed9f3355..000000000 --- a/sapl/templates/bootstrap3/layout/radioselect.html +++ /dev/null @@ -1,18 +0,0 @@ -{% load crispy_forms_filters %} -{% load l10n %} - -
- {% include 'bootstrap3/layout/field_errors_block.html' %} - {% for choice in field.field.choices %} - - - {% endfor %} - - {% include 'bootstrap3/layout/help_text.html' %} -
diff --git a/sapl/templates/bootstrap3/layout/radioselect_inline.html b/sapl/templates/bootstrap3/layout/radioselect_inline.html deleted file mode 100644 index 29a57025c..000000000 --- a/sapl/templates/bootstrap3/layout/radioselect_inline.html +++ /dev/null @@ -1,12 +0,0 @@ -{% if field.is_hidden %} - {{ field }} -{% else %} -
- {% if field.label %} - - {% endif %} - {% include 'bootstrap3/layout/radioselect.html' %} -
-{% endif %}