Finally a real searchkit for django!
Project description
Welcome to django-searchkit
Description
Finally there is a real searchkit application for django that integrates best with the django admin backend.
Build and apply complex searches on model instances right in the backend without any coding. Save and reuse your searches by a handy django admin filter with a single click.
Setup
Install via pip:
pip install django-searchkit
Add searchkit to your INSTALLED_APPS:
INSTALLED_APPS = [
'searchkit',
...
]
Add the SearkitFilter to your ModelAdmin:
from django.contrib import admin
from searchkit.filters import SearchkitFilter
from .models import MyModel
@admin.register(MyModel)
class MyModelAdmin(admin.ModelAdmin):
...
list_filter = [
SearchkitFilter,
...
]
...
Usage
- Open the admin changelist of your Model.
- Click the "Add filter" button of the Searchkit filter.
- Give your Filter a name.
- Configure as many filter rules as you want.
- Click "Save and apply".
- Reuse your filter whenever you want using the Searchkit filter section.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_searchkit-1.1.tar.gz.
File metadata
- Download URL: django_searchkit-1.1.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11458a271b95e822b16fa951e0eaef531e6e5e0bf4bc99cc2a39e5390b531800
|
|
| MD5 |
5aa8adf8e732ed4b6ff2689d0397ef83
|
|
| BLAKE2b-256 |
47244129c832513175687ce059863c6b2a76717b3b10772009203d057f6c8369
|
File details
Details for the file django_searchkit-1.1-py3-none-any.whl.
File metadata
- Download URL: django_searchkit-1.1-py3-none-any.whl
- Upload date:
- Size: 63.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0aaa46aaf9cdbc9f1bce15956733bc6e9557c482c0016c2881b2840fed1b7dbb
|
|
| MD5 |
ff85a68a5bff3d1debbff9a850af8298
|
|
| BLAKE2b-256 |
5c8dd9a00e3e155b4cbda257b299dc890ccc5a714c0f144322e2b044909e3441
|