Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/silentsokolov/django-admin-rangefilter
A Django app that lets you filter data by date range and numeric range in the admin UI
https://github.com/silentsokolov/django-admin-rangefilter
admin-ui django python
Last synced: 23 days ago
JSON representation
A Django app that lets you filter data by date range and numeric range in the admin UI
- Host: GitHub
- URL: https://github.com/silentsokolov/django-admin-rangefilter
- Owner: silentsokolov
- License: mit
- Created: 2016-06-24T08:43:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-24T06:05:11.000Z (3 months ago)
- Last Synced: 2024-10-15T00:05:09.557Z (29 days ago)
- Topics: admin-ui, django, python
- Language: Python
- Homepage:
- Size: 324 KB
- Stars: 715
- Watchers: 10
- Forks: 106
- Open Issues: 13
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://github.com/silentsokolov/django-admin-rangefilter/workflows/build/badge.svg?branch=master
:target: https://github.com/silentsokolov/django-admin-rangefilter/actions?query=workflow%3Abuild.. image:: https://codecov.io/gh/silentsokolov/django-admin-rangefilter/branch/master/graph/badge.svg
:target: https://codecov.io/gh/silentsokolov/django-admin-rangefilterdjango-admin-rangefilter
========================A Django app that adds a filter by date range and numeric range to the admin UI.
.. image:: https://raw.githubusercontent.com/silentsokolov/django-admin-rangefilter/master/docs/images/screenshot.png
Requirements
------------* Python 3.6+
* Django 1.11+Installation
------------Use your favorite Python package manager to install the app from PyPI, e.g.
Example:
``pip install django-admin-rangefilter``
Add ``rangefilter`` to ``INSTALLED_APPS``:
Example:
.. code:: python
INSTALLED_APPS = (
...
'rangefilter',
...
)Example usage
-------------In admin
~~~~~~~~.. code:: python
from datetime import datetime
from django.contrib import admin
from rangefilter.filters import (
DateRangeFilterBuilder,
DateTimeRangeFilterBuilder,
NumericRangeFilterBuilder,
DateRangeQuickSelectListFilterBuilder,
)from .models import Post
@admin.register(Post)
class PostAdmin(admin.ModelAdmin):
list_filter = (
("created_at", DateRangeFilterBuilder()),
(
"updated_at",
DateTimeRangeFilterBuilder(
title="Custom title",
default_start=datetime(2020, 1, 1),
default_end=datetime(2030, 1, 1),
),
),
("num_value", NumericRangeFilterBuilder()),
("created_at", DateRangeQuickSelectListFilterBuilder()), # Range + QuickSelect Filter
)Support Content-Security-Policy
-------------------------------For Django 1.8+, if `django-csp `_ is installed, nonces will be added to style and script tags.