django-bs

Bootstrap integration for django using widget templates
git clone https://git.ce9e.org/django-bs.git

commit
b14679af7af0163338183979ec3da9cd4a3143cf
parent
7956672c428f295d212c567f71fa1872d6db9342
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2021-06-08 07:49
use underscore in app name

Diffstat

M MANIFEST.in 2 +-
M README.rst 4 ++--
R django-bs4/__init__.py -> django_bs4/__init__.py 0
R django-bs4/templates/bs4/field.html -> django_bs4/templates/bs4/field.html 0
R django-bs4/templates/bs4/form.html -> django_bs4/templates/bs4/form.html 0
R django-bs4/templates/bs4/messages.html -> django_bs4/templates/bs4/messages.html 0
R django-bs4/templates/bs4/pagination.html -> django_bs4/templates/bs4/pagination.html 0
R django-bs4/templates/django/forms/widgets/checkbox.html -> django_bs4/templates/django/forms/widgets/checkbox.html 0
R django-bs4/templates/django/forms/widgets/checkbox_option.html -> django_bs4/templates/django/forms/widgets/checkbox_option.html 0
R django-bs4/templates/django/forms/widgets/clearable_file_input.html -> django_bs4/templates/django/forms/widgets/clearable_file_input.html 0
R django-bs4/templates/django/forms/widgets/file.html -> django_bs4/templates/django/forms/widgets/file.html 0
R django-bs4/templates/django/forms/widgets/input.html -> django_bs4/templates/django/forms/widgets/input.html 0
R django-bs4/templates/django/forms/widgets/multiple_input.html -> django_bs4/templates/django/forms/widgets/multiple_input.html 0
R django-bs4/templates/django/forms/widgets/multiwidget.html -> django_bs4/templates/django/forms/widgets/multiwidget.html 0
R django-bs4/templates/django/forms/widgets/radio_option.html -> django_bs4/templates/django/forms/widgets/radio_option.html 0
R django-bs4/templates/django/forms/widgets/select.html -> django_bs4/templates/django/forms/widgets/select.html 0
R django-bs4/templates/django/forms/widgets/textarea.html -> django_bs4/templates/django/forms/widgets/textarea.html 0
R django-bs4/templatetags/__init__.py -> django_bs4/templatetags/__init__.py 0
R django-bs4/templatetags/bootstrap4.py -> django_bs4/templatetags/bootstrap4.py 0

19 files changed, 3 insertions, 3 deletions


diff --git a/MANIFEST.in b/MANIFEST.in

@@ -1 +1 @@
    1    -1 recursive-include django-bs4/templates *.html
   -1     1 recursive-include django_bs4/templates *.html

diff --git a/README.rst b/README.rst

@@ -22,12 +22,12 @@ Install with pip::
   22    22 
   23    23 After that you have to add it to ``INSTALLED_APPS``. You also need to
   24    24 make sure that the correct ``FORM_RENDERER`` is selected and
   25    -1 ``django.forms`` is in ``INSTALLED_APPS`` (after ``django-bs4``). This
   -1    25 ``django.forms`` is in ``INSTALLED_APPS`` (after ``django_bs4``). This
   26    26 is required so that widget templates can be overwritten::
   27    27 
   28    28    INSTALLED_APPS = [
   29    29
   30    -1        'django-bs4',
   -1    30        'django_bs4',
   31    31
   32    32        'django.forms',
   33    33

diff --git a/django-bs4/__init__.py b/django_bs4/__init__.py

diff --git a/django-bs4/templates/bs4/field.html b/django_bs4/templates/bs4/field.html

diff --git a/django-bs4/templates/bs4/form.html b/django_bs4/templates/bs4/form.html

diff --git a/django-bs4/templates/bs4/messages.html b/django_bs4/templates/bs4/messages.html

diff --git a/django-bs4/templates/bs4/pagination.html b/django_bs4/templates/bs4/pagination.html

diff --git a/django-bs4/templates/django/forms/widgets/checkbox.html b/django_bs4/templates/django/forms/widgets/checkbox.html

diff --git a/django-bs4/templates/django/forms/widgets/checkbox_option.html b/django_bs4/templates/django/forms/widgets/checkbox_option.html

diff --git a/django-bs4/templates/django/forms/widgets/clearable_file_input.html b/django_bs4/templates/django/forms/widgets/clearable_file_input.html

diff --git a/django-bs4/templates/django/forms/widgets/file.html b/django_bs4/templates/django/forms/widgets/file.html

diff --git a/django-bs4/templates/django/forms/widgets/input.html b/django_bs4/templates/django/forms/widgets/input.html

diff --git a/django-bs4/templates/django/forms/widgets/multiple_input.html b/django_bs4/templates/django/forms/widgets/multiple_input.html

diff --git a/django-bs4/templates/django/forms/widgets/multiwidget.html b/django_bs4/templates/django/forms/widgets/multiwidget.html

diff --git a/django-bs4/templates/django/forms/widgets/radio_option.html b/django_bs4/templates/django/forms/widgets/radio_option.html

diff --git a/django-bs4/templates/django/forms/widgets/select.html b/django_bs4/templates/django/forms/widgets/select.html

diff --git a/django-bs4/templates/django/forms/widgets/textarea.html b/django_bs4/templates/django/forms/widgets/textarea.html

diff --git a/django-bs4/templatetags/__init__.py b/django_bs4/templatetags/__init__.py

diff --git a/django-bs4/templatetags/bootstrap4.py b/django_bs4/templatetags/bootstrap4.py