Metadata-Version: 1.1
Name: django-easyfilters-ex
Version: 0.6
Summary: Easy creation of link-based filtering for a list of Django model objects.
Home-page: https://github.com/ionelmc/django-easyfilters/
Author: Ionel Cristian Mărieș
Author-email: contact@ionelmc.ro
License: MIT
Description: ==================
        django-easyfilters
        ==================
        
        .. image:: http://img.shields.io/travis/ionelmc/python-django-easyfilters.png
            :alt: Build Status
            :target: https://travis-ci.org/ionelmc/python-django-easyfilters
        
        .. image:: http://img.shields.io/coveralls/ionelmc/python-django-easyfilters.png
            :alt: Coverage Status
            :target: https://coveralls.io/r/ionelmc/python-django-easyfilters
        
        .. image:: http://img.shields.io/pypi/v/django-easyfilters.png
            :alt: PYPI Package
            :target: https://pypi.python.org/pypi/django-easyfilters
        
        .. image:: http://img.shields.io/pypi/dm/django-easyfilters.png
            :alt: PYPI Package
            :target: https://pypi.python.org/pypi/django-easyfilters
        
        Overview
        ========
        
        This library provides filters similar in some ways to ``list_filter`` and
        ``date_hierarchy`` in Django's admin, but for use outside the
        admin. Importantly, it also includes result counts for the choices. It is
        designed to be very easy to get started with.
        
        Install
        =======
        
        ::
            
            pip install django-easyfilters-ex
        
        Docs
        ====
        
        https://django-easyfilters.readthedocs.org/en/latest/
        
        TODO
        ====
        
        * Possible: ability to specify 'defaults' attribute for FilterSet
        * Allow the automatic 'page' resetting to be customized
        
        
        
        Changelog
        =========
        
        Version 0.6
        -----------
        
        * Fixed compat with django 1.6 and 1.7
        * Fixed handling around NULL values
        * Fixed inconsistencies with "display" links
          
        Version 0.5
        -----------
        
        * Python 3.3 compatibility :-) Tests are run against Python 2.6, 2.7 and 3.3,
          and Django 1.3 to 1.5
        
        Version 0.4
        -----------
        
        * Cleaned up internal ``Filter`` implementation/API
        
        * Added and documented ``Filter.render_choice_object`` which can
          be overridden for easy customization of filters.
        
        * Fixed various bugs with DateTimeFilter. Thanks to psyton for a bug fix.
        
        Version 0.3.2
        -------------
        
        * Correction to new ``FilterSet.title`` attribute.
        
        Version 0.3.1
        -------------
        
        * Fixed crasher in 0.3
        
        Version 0.3
        -----------
        
        * Added the ``FilterSet.title`` attribute, and the ``title_fields`` attribute
          that can be used to control it.
        
        Version 0.2
        -----------
        
        * Added NumericRangeFilter
        
        * More docs, and API firmed up.
        
        * Fixed bug with test_settings.py which caused static media not to be served
          with most recent Django.
        
        Version 0.1.1
        -------------
        
        Cleaned up the release tarball to remove old files.
        
        Version 0.1
        -----------
        
        Initial release
        
Keywords: django filter autofilter drilldown easy simple
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Framework :: Django
Classifier: Topic :: Software Development :: User Interfaces
