Django Admin Search Builder 0.2.2

django-admin-search-builder 0.2.2

Last updated:

0 purchases

django-admin-search-builder 0.2.2 Image
django-admin-search-builder 0.2.2 Images

Free

Languages

Categories

Add to Cart

Description:

djangoadminsearchbuilder 0.2.2

django-admin-search-builder
Django app that makes you able to build advanced queries via admin filters UI
This Application aims to give you the faster and easier way to build and run advanced queries through the Django Admin ModelAdmin User Interface, using Django's ORM. See the example project and the gallery.
Setup
pip install django-admin-search-builder

in settings.INSTALLED_APPS add
'admin_adv_search_builder',

in your ModelAdmin, use the following example
from admin_adv_search_builder.filters import AdvancedSearchBuilder
from django.contrib import admin

from . models import Identity


@admin.register(Identity)
class IdentityAdmin(admin.ModelAdmin):
list_filter = (AdvancedSearchBuilder,)

Example
pip install -r requirements.xt

cd example
./manage.py migrate
./manage.py createsuperuser
./manage.py loaddata identity_dumps.json
./manage.py runserver

Gallery

Authors
Giuseppe De Marco

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.