Skip to main content

Allow to filter by a custom date range on the Django Admin

Project description

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_APP. For this, edit the setup.py file:

INSTALLED_APPS = (
    ...
    'daterange_filter'
)

After this, if you have a model like this one:

class MyModel(models.Model):
    ...
    foo = models.CharField(max_length=1, choices=BAR_CHOICES)
    created_at = models.DateField()

To allow to filter the created_at field using the date ranges, you must edit the admin.ModelAdmin referenced to that class:

from daterange_filter.filter import DateRangeFilter
from django.contrib import admin
from models import MyModel

class MyModelAdmin(admin.ModelAdmin):
    list_filter = (
        'foo',
        ('created', DateRangeFilter), # this is a tuple
        ...
    )

DateRangeFilter honours localization and supports local date formats for filtering.

Changes

0.2.0:

  • Updated README

  • Works with DateTime (special thanks to Andrea Rabbaglietti)

0.1.1:

Project details


Download files

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

Source Distribution

django-daterange-filter-1.0.0.tar.gz (3.6 kB view details)

Uploaded Source

File details

Details for the file django-daterange-filter-1.0.0.tar.gz.

File metadata

File hashes

Hashes for django-daterange-filter-1.0.0.tar.gz
Algorithm Hash digest
SHA256 c9098b50d274ed13913298a4a02eb3e6ca28bbdcdcd76414eee4945087048546
MD5 d7fce248b6dc441c4bdb2ef1f8691988
BLAKE2b-256 80c4c7b4f029b696cca3371664830fd003f64087edd022262ecdc334eacf3891

See more details on using hashes here.

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