Metadata-Version: 1.2
Name: django-admin-rangefilter-jalali
Version: 0.4.2.8
Summary: django-admin-rangefilter app, add the filter by a custom date range on the admin UI.
Home-page: https://github.com/farajim25/django-admin-rangefilter-jalali
Author: Mohammad Faraji
Author-email: farajim25@gmail.com
License: MIT
Description: .. image:: https://travis-ci.org/silentsokolov/django-admin-rangefilter.svg?branch=master
           :target: https://travis-ci.org/silentsokolov/django-admin-rangefilter
        
        .. image:: https://codecov.io/gh/silentsokolov/django-admin-rangefilter/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/silentsokolov/django-admin-rangefilter
        
        django-admin-rangefilter-jalali
        ===============================================================
        
        # Note django 1.8 not working pls w8 to fix it 
        
        django-admin-rangefilter-jalali app, add the filter by a custom jdate / jdatetime range on the admin UI.
        
        .. image:: https://raw.githubusercontent.com/silentsokolov/django-admin-rangefilter/master/docs/images/screenshot.png
        
        
        Requirements
        ------------
        
        * Python 2.7+ or Python 3.4+
        * Django 1.8+
        
        
        Installation
        ------------
        
        Use your favorite Python package manager to install the app from PyPI, e.g.
        
        Example:
        
        ``pip install django-admin-rangefilter-jalali``
        
        
        Add ``rangefilter_jalali`` to ``INSTALLED_APPS``:
        
        Example:
        
        .. code:: python
        
            INSTALLED_APPS = (
                ...
                'django_jalali',
                'rangefilter_jalali',
                ...
            )
        
        
        Example usage
        -------------
        
        In admin
        ~~~~~~~~
        
        .. code:: python
        
            from django.contrib import admin
            from rangefilter_jalali.filter import DateRangeFilter, DateTimeRangeFilter
        
            from .models import Post
        
        
            @admin.register(Post)
            class PostAdmin(admin.ModelAdmin):
                list_filter = (
                    ('created_at', DateRangeFilter), ('updated_at', DateTimeRangeFilter),
                )
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
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: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Utilities
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
