Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tzulberti/django-datefilterspec
Adds filtering by ranges of dates in the admin filter sidebar.
https://github.com/tzulberti/django-datefilterspec
Last synced: 13 days ago
JSON representation
Adds filtering by ranges of dates in the admin filter sidebar.
- Host: GitHub
- URL: https://github.com/tzulberti/django-datefilterspec
- Owner: tzulberti
- Fork: true (coolchevy/django-datefilterspec)
- Created: 2012-06-10T22:12:00.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2021-09-23T14:05:52.000Z (about 3 years ago)
- Last Synced: 2024-10-05T23:52:35.096Z (about 1 month ago)
- Language: Python
- Homepage: http://coolchevy.org.ua
- Size: 198 KB
- Stars: 78
- Watchers: 11
- Forks: 79
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
ABANDONED
=========Check this PR to get more info: https://github.com/tzulberti/django-datefilterspec/pull/17
.. image:: https://travis-ci.org/tzulberti/django-datefilterspec.svg?branch=master
:alt: Build status
:target: https://travis-ci.org/tzulberti/django-datefilterspecdjango-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
.. code-block:: bash
pip install django-daterange-filter
Add daterange_filter to settings.INSTALLED_APP. For this, edit the setup.py
file:.. code-block:: python
INSTALLED_APPS = (
...
'daterange_filter'
)After this, if you have a model like this one:
.. code-block:: python
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:.. code-block:: python
from daterange_filter.filter import DateRangeFilter
from django.contrib import admin
from models import MyModelclass MyModelAdmin(admin.ModelAdmin):
list_filter = (
'foo',
('created', DateRangeFilter), # this is a tuple
...
)DateRangeFilter honours localization and supports local date
formats for filtering.Running tests
-------
First :code:`pip install -r requirements.txt`, then :code:`python ./runtests.py`If you wanna run tests on all supported Python/Django versions, execute :code:`tox`.
Changes
-------1.3.0:
* Fixed calendar icon moving to a new line in Django 1.9 (Special thanks to https://github.com/farooqaaa)
* fix daterange_filter function (Special thanks to https://github.com/ZamorakLin)1.1.1:
* Special thanks to: https://github.com/mightygraf
0.2.0:
* Updated README
* Works with DateTime (special thanks to Andrea Rabbaglietti)0.1.1:
* Removed the custom DateRangeField
* Improved i18n
* Special thanks to: https://github.com/DXist