Skip to main content

A simple extension to Django app to render filters in django admin panel as autocomplete widget.

Project description

django_select2_admin_filters

This extension is based on django-select2 and works with or without Grappelli.

Installation

  • Install using pip

    pip install django-select2-admin-filters
    
  • Update INSTALLED_APPS, you need too put django_select2_admin_filters after admin and django_select2

    INSTALLED_APPS = [
        'django.contrib.admin',
        #
        'django_select2',
        'django_select2_admin_filters',
    ]
    
  • Update urls.py to use model filters (refer to django-select2 documentation)

    path('select2/', include('django_select2.urls')),
    

Filters

Filters are generally of two types, but each of them can be single or multiple selectable:

  • ChoiceFilter
    • ChoiceSelect2Filter
    • MultipleChoiceSelect2Filter
  • ModelFilter
    • ModelSelect2Filter
    • MultipleModelSelect2Filter

Usage

  • Use filter in your admin.py
      from django.contrib import admin
      from django_select2_admin_filters.admin import (
          Select2AdminFilterMixin)
      from django_select2_admin_filters.filters import (
          ChoiceSelect2Filter, MultipleChoiceSelect2Filter,
          ModelSelect2Filter, MultipleModelSelect2Filter)
      from your_app.models import Country, Person, Profession
    
    
      class CountryFilter(ModelSelect2Filter):
          title = 'Country of residence'                 # filter's title
          parameter_name = 'country'                     # parameter used in url and by default field name of Foreign Key used to filter results
          autocomplete_queryset = Country.objects.all()  # queryset to autocomplete
          search_fields = ['name__icontains']            # fields of Country model used to filtering
    
          # optionally you can override queryset method
          def queryset(self, request, queryset):
              val = self.value()
              if val:
                  return queryset.filter(country_of_residence=val)
              return queryset
    
    
      class ProfessionFilter(MultipleModelSelect2Filter):
          title = 'Profession'
          parameter_name = 'profession'
          autocomplete_queryset = Profession.objects.all()
          search_fields = ['name__icontains']
    
          def queryset(self, request, queryset):
              val = self.value_as_list()
              if len(val) > 0:
                  return queryset.filter(professions__profession_id__in=val)
              return queryset
    
    
      class StatusFilter(ChoiceSelect2Filter):
          title = 'Status'
          parameter_name = 'status'
          autocomplete_choice_list = [    # list of choices
              (1, 'Active',),
              (2, 'Suspended',),
              (3, 'Deleted',),
          ]
    
    
      @admin.register(Person)
      class PersonAdmin(Select2AdminFilterMixin, admin.ModelAdmin):
    
          # change_list_template = 'admin/change_list_filter_sidebar.html' <- DON'T override change_list_template
          list_filter = (CountryFilter, ProfessionFilter, StatusFilter,) # actually you cannot mix filters with traditional filters
    

TODO

  • add tests
  • add handling dependent_fields

Author

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-select2-admin-filters-0.1.4.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-select2-admin-filters-0.1.4.tar.gz.

File metadata

  • Download URL: django-select2-admin-filters-0.1.4.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for django-select2-admin-filters-0.1.4.tar.gz
Algorithm Hash digest
SHA256 98670c784f7ad750c37828f9401c541386d8188da32c0a1cc369c8cdd0c58444
MD5 afdce7cc1e9b32b3ff9567eeb509fe77
BLAKE2b-256 ce76aaec26f3d1144b7a0ea46fd9d089da5418378f21b513f51cea726edf29fc

See more details on using hashes here.

File details

Details for the file django_select2_admin_filters-0.1.4-py2-none-any.whl.

File metadata

  • Download URL: django_select2_admin_filters-0.1.4-py2-none-any.whl
  • Upload date:
  • Size: 10.1 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for django_select2_admin_filters-0.1.4-py2-none-any.whl
Algorithm Hash digest
SHA256 4bda23817854d78554deb1f473ebf143247b98cd27ebf4623e24a1cea8c8c6ef
MD5 ba531786fc9016c7e09dbbe9338f1d4c
BLAKE2b-256 a78b441b4f61530dc56321ad0eb04971d06c47fbeccf164bb1765036059d6173

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page