Metadata-Version: 1.1
Name: django-closable-admin-filter
Version: 0.1.1
Summary: A simple Django app to add hide/show ability to the filter in Django admin.
Home-page: https://github.com/eternalfame/django-closable_admin_filter
Author: Vyacheslav Sukhenko
Author-email: eternalfame@mail.ru
License: MIT License
Description: =====
        Closable Admin Filter
        =====
        
        When there are too many fields in Django admin and it's necessary to have the filter, it turns to very ugly situation, when filter `flies` over the fields.
        
        So here's a simple Django app to provide a "HIDE" button for the filter.
        
        Quick start
        -----------
        
        1. Install the package using::
        
            pip install django-closable_admin_filter
        
        2. Add "closable_admin_filter" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'closable_admin_filter',
            )
        
        3. Add the AdminClosableFilterMixin to your inherited from ModelAdmin class like this::
        
        	class MyAdmin(AdminClosableFilterMixin, admin.ModelAdmin):
        		...
        
        4. Visit http://your.domain/admin/your_app/your_model/ to enjoy the result.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
