Skip to main content

django-searchable-select - a better and faster multiple selection widget with suggestions for Django

Project description

django-searchable-select

A better and faster multiple selection widget with suggestions for Django

What is this?

This plugin provides a replacement for standard multi-choice select on Django admin pages.

You can use this as custom widget for ManyToManyField.

Features

  • Filtering is performed on server side and thus significantly improves performance.

  • Uses Twitter Typeahead to provide suggestion completion.

  • Works great with ManyToMany fields that can be chosen from thousands of thousands of choices, e. g. User - City relations.

Before

Before

Before

After

Before

Before

Installation

  1. Install django-searchable-select.

    $ pip install django-searchable-select
  2. Add ‘searchableselect’ to your settings.

    # settings.py
    
    INSTALLED_APPS = (
        # ...
        'searchableselect',
        # ...
    )
  3. Add URL pattern required for the suggesting engine to your root urls.py.

    # urls.py
    
    urlpatterns = patterns(
        '',
        # ...
        url('^searchableselect/', include('searchableselect.urls')),
        # ...
    )
  4. Use the widget in your model admin class:

    from django import models, forms
    from models import MyModel
    
    class MyModelForm(forms.ModelForm):
        class Meta:
            model = models.MyModel
            exclude = ()
            widgets = {
                'cities': SearchableSelect(model='cities.City', search_field='name')
            }
    
    
    class MyModelAdmin(admin.ModelAdmin):
        form = Form
    
    admin.site.register(models.MyModel, MyModelAdmin)

    Remember to always initialize SearchableSelect with two keyword arguments: model and search_field.

    • model is the string in form APP_NAME.MODEL_NAME representing your model in the project, e. g. ‘cities.City’

    • search_field is the field within model that will be used to perform filtering, e. g. ‘name’

Known issues

  • Not tested with ForeignKey fields.

Contributing

I’m looking forward to bug reports and any kind of contribution.

License

You are free to use this where you want as long as you keep the author reference. Please see LICENSE for more info.

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-searchable-select-0.8.tar.gz (26.0 kB view details)

Uploaded Source

File details

Details for the file django-searchable-select-0.8.tar.gz.

File metadata

File hashes

Hashes for django-searchable-select-0.8.tar.gz
Algorithm Hash digest
SHA256 a3e617e19ba7086b26b277edd523d49ffc19a12d0266509b86523336f8d7d712
MD5 24d5013cbb574971e84a99e353fcb0be
BLAKE2b-256 da33787967cca972dfb164e12805f383f925fc57afb77a130157e074bfca2409

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