Metadata-Version: 1.1
Name: django-daterange-filter
Version: 0.1.1
Summary: Allow to filter by a custom date range on the Django Admin
Home-page: http://github.com/tzulberti/django-datefilterspec
Author: Tomas Zulberti
Author-email: tzulberti@gmail.com
License: License :: OSI Approved :: BSD License
Description: django-daterange-filter 
        =======================
        
        Add the option to filter by a custom date range on the admin. This allows
        to inputs to be used to get the custom date range filters.
        
        See datefilter.png of a screenshot of how this is seen on the admin.
        
        **IMPORTANT:** this will work with Django 1.4. I won't work with previous Django
        versions.
        
        Installation
        ------------
        
        Use pip/easy_install
        
            pip install django-daterange-filter
        
        
        Add daterange_filter to settings.INSTALLED_APPS. Then configure your admin::
        
            from daterange_filter.filter import DateRangeFilter
        
            ...
        
            list_filter = (
                ...
                ('created', DateRangeFilter),
                ...
            )
        
        
        DateRangeFilter honours localization and supports local date formats for filtering.
        
        
        Changes 
        -------
        
        0.1.1:
        
        * Removed the custom DateRangeField
        * Improved i18n
        * Special thanks to: https://github.com/DXist
        
Keywords: django admin,django date range
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Framework :: Django
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Environment :: Web Environment
Classifier: Operating System :: OS Independent
