Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/javrasya/django-ipprefix-filter
Django Ip Filter
https://github.com/javrasya/django-ipprefix-filter
Last synced: about 1 month ago
JSON representation
Django Ip Filter
- Host: GitHub
- URL: https://github.com/javrasya/django-ipprefix-filter
- Owner: javrasya
- License: bsd-3-clause
- Created: 2013-12-05T00:58:49.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-05T22:32:16.000Z (almost 11 years ago)
- Last Synced: 2024-10-03T17:27:14.748Z (about 1 month ago)
- Language: JavaScript
- Size: 207 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
django-daterange-filter
=====================Add the option to filter by a custom ip prefix filter on the admin. This allows
to inputs to be used as ip and mask seperately for an ip prefix field.**IMPORTANT:** this will work with Django 1.4. I won't work with previous Django
versions.Installation
-----------Use pip/easy_install
pip install git+git://github.com/javrasya/django-ipprefix-filter.git
Add ip_filter to settings.INSTALLED_APPS. Then configure your admin:
from ip_filter.filter import IpMaskFilter
...
list_filter = (
...
('created', IpMaskFilter),
...
)