Django autocomplete widgets and views using Tom Select
Project description
Django TomSelect
A powerful, lightweight Django package for dynamic select inputs with autocomplete, tagging, and more.
Django TomSelect integrates Tom Select into your Django projects, providing beautiful and intuitive select inputs with features like:
-
Live Search & Autocomplete
- Real-time filtering and highlighting as you type
- Server-side search with customizable lookups
- Automatic pagination for large datasets
- Customizable minimum query length
-
Rich UI Options
- Single and multiple selection modes
- Tabular display with custom columns
- Bootstrap 4/5 theming support
- Clear/remove buttons
- Dropdown headers & footers
- Checkbox options
- Customizable templates
Quick Start
- Install the package:
pip install django-tomselect
- Update settings.py:
INSTALLED_APPS = [
...
"django_tomselect"
]
MIDDLEWARE = [
...
"django_tomselect.middleware.TomSelectMiddleware",
...
]
TEMPLATES = [
{
"OPTIONS": {
"context_processors": [
...
"django_tomselect.context_processors.tomselect",
...
],
},
},
]
- Create an autocomplete view:
from django_tomselect.autocompletes import AutocompleteModelView
class PersonAutocompleteView(AutocompleteModelView):
model = Person
search_lookups = ["full_name__icontains"]
value_fields = ["id","full_name"]
- Add URL pattern:
urlpatterns = [
path("person-autocomplete/", PersonAutocompleteView.as_view(), name="person_autocomplete"),
]
- Use in your forms:
from django_tomselect.forms import TomSelectModelChoiceField, TomSelectConfig
class MyForm(forms.Form):
person = TomSelectModelChoiceField(
config = TomSelectConfig(
url="person_autocomplete",
value_field="id",
label_field="full_name",
)
)
- Include in your template:
{{ form.media }} {# Adds the required CSS/JS #}
{{ form }}
Other Features
Advanced Filtering
- Dependent/chained select fields
- Field exclusion support
- Custom search implementations
- Hooks for overriding functionality
Flexible Configuration
- Support for Tom Select Plugins
- Global settings and per-form-field configuration
- Override any template
Security
- Built-in permission handling
- including django auth, custom auth, object perms
Internationalization
- Translation support
- Customizable messages
Example Project
To see Django TomSelect in action, check out the Example Project. It demonstrates a variety of use cases, with 15 different implementations from basic atocompletion to advanced applications, showing how to use django-tomselect's autocomplete fields in a Django project.
Each of the examples is described in the Example Project docs.
Here are a few screenshots from the example project:
Documentation
Contributing
Contributions are welcome! Check out our Contributor Guide to get started.
License
This project is licensed under the MIT License - see the License file for details.
Acknowledgments
This package builds on the excellent work of Philip Becker in mizdb-tomselect, with a focus on generalization, Django templates, translations, and customization.
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
File details
Details for the file django_tomselect-2025.7.1.tar.gz
.
File metadata
- Download URL: django_tomselect-2025.7.1.tar.gz
- Upload date:
- Size: 207.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
be089e4668354273c85a9995ebca78e1ed7785ccdbf0272758f1a2f40d8da2aa
|
|
MD5 |
e7525d570fd4b290cbceac99d0061c81
|
|
BLAKE2b-256 |
f17c73090be9b8c11fcf100a10e60a16ede19564cc2201f845bf5692df71d8f0
|
File details
Details for the file django_tomselect-2025.7.1-py3-none-any.whl
.
File metadata
- Download URL: django_tomselect-2025.7.1-py3-none-any.whl
- Upload date:
- Size: 237.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
85b44f97402088ceb24164f348dd4f31b1d75e4ae52bec966490855efaf10ac9
|
|
MD5 |
4705692d5412f5dbaaa29d8611dfdff4
|
|
BLAKE2b-256 |
ed8c2423ab432dd2a6792f28d8761e632639a317b7a413cbf06b45b6b5cd7d14
|