From aa42bb29d54e22feb80d245252da9692971b03fa Mon Sep 17 00:00:00 2001 From: LeandroRoberto Date: Mon, 17 Oct 2016 16:34:19 -0200 Subject: [PATCH] =?UTF-8?q?Remove=20customiza=C3=A7=C3=A3o=20do=20bootstra?= =?UTF-8?q?p?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Após fork e ajustes feitos no tema drunken-parrot-ui-flat, alterações feitas nos arquivos deste commit não são mais necessárias, passando a ser renderizado os arquivos que são padrão da biblioteca django-crispy-forms. --- .../layout/checkboxselectmultiple.html | 14 -------------- .../bootstrap3/layout/radioselect.html | 18 ------------------ .../bootstrap3/layout/radioselect_inline.html | 12 ------------ 3 files changed, 44 deletions(-) delete mode 100644 sapl/templates/bootstrap3/layout/checkboxselectmultiple.html delete mode 100644 sapl/templates/bootstrap3/layout/radioselect.html delete mode 100644 sapl/templates/bootstrap3/layout/radioselect_inline.html 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 %}