Metadata-Version: 2.1
Name: django-horizontal-list-filter
Version: 0.1.1
Summary: Move list filter to  above of the changelist in django admin site.
Home-page: UNKNOWN
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description: # django-horizontal-list-filter
        
        Move list filter to  above of the changelist in django admin site.
        
        
        ## Install
        
        ```shell
        pip install django-horizontal-list-filter
        ```
        
        ## Usage
        
        
        **pro/settings.py**
        
        ```python
        INSTALLED_APPS = [
            ...
            'django_static_jquery3',
            'django_simple_tags',
            'django_horizontal_list_filter',
            'mptt', # optional
            ...
        ]
        ```
        
        - Add django_static_jquery3, django_simple_tags and django_horizontal_list_filter to settings.INSTALLED_APPS.
        - If using mptt, make sure that django_horizontal_list_filter is above mptt, because django_horizontal_list_filter is override mptt's template.
        - If using some other third part app provides customized list filter, you may need to rewrite the filter's template to turn the result html from `ul` to `select`.
        
        
        ## Releases
        
        ### v0.1.1 2020/04/28
        
        - Fix cl context variable not provided problem.
        
        ### v0.1.0 2020/04/27
        
        - First release.
        
Keywords: django admin extentions,django horizontal list filter
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
Description-Content-Type: text/markdown
