Skip to main content

jalali-django-admin-rangefilter app, add the filter by a custom date range on the admin UI.

Project description

jalali-django-admin-rangefilter

This is a multilingual date range filter for django admin and it is inspired by django-admin-rangefilter.

To see the jalali calendar, make sure that request's LANGUAGE_CODE contains 'fa' ('fa' for Farsi).

Requirements

  • Python 3.5+
  • Django 3.0+

Installation

Use your favorite Python package manager to install the app from PyPI, e.g.

Example:

pip install jalali-django-admin-rangefilter

Add rangefilter2 to INSTALLED_APPS:

Example:

    INSTALLED_APPS = (
        ...
        'rangefilter2',
        ...
    )

Example usage in admin

    from django.contrib import admin
    from rangefilter2.filter import DateRangeFilter

    from .models import Post


    @admin.register(Post)
    class PostAdmin(admin.ModelAdmin):
        list_filter = (
            ('created_at', DateRangeFilter),
        )

[Unreleased]

[0.1.0] - 2020-03-05

Added

  • Initial commit

[0.1.2] - 2020-03-23

Fixed

  • Multiple filters in a page previously didn't work

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page