Metadata-Version: 1.1
Name: django-checkbox-normalize
Version: 0.1.0
Summary: It's bad design to put label after checkbox for BooleanField widget, so let's make it normal.
Home-page: UNKNOWN
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description-Content-Type: text/markdown
Description: # django-checkbox-normalize
        
        It's bad design to put label after checkbox for BooleanField widget, so let's make it normal.
        
        
        ## Install
        
        ```shell
        pip install django-checkbox-normalize
        ```
        
        ## Settings
        
        ```python
        INSTALLED_APPS = [
            ...
            'django_checkbox_normalize',
            ...
        ]
        ```
        
        ## Usage
        
        Just insert app name "django_checkbox_normalize" into INSTALLED_APPS variable before "django.contrib.admin" in settings.py, and nothing more.
        
        **Note:**
        
        - "django_checkbox_normalize" must before "django.contrib.admin".
        
        ## Releases
        
        ### v0.1.0 2020/03/02
        
        - First release.
        
Keywords: django admin extentions,django checkbox normalize
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
