Django select2 theme for select input widgets.
Project description
This is django application that brings select2 widget to select inputs in admin.
Project aims to support 3.4**(at least) and above, **Django 2.0+.
Current stable version is 1.4, dropping support for python-2.x.
For Django < 2.0 version support or python-2.x compatibility, please use version 1.3.4 which is the last version to support python-2.x compatibility.
This django application is just a lightweight wrapper on Select2 library and provides easy-to-use basic select2 functionality in a django project. If you need feature-rich solution, i recommend you to look at the latest django-select2 library, which have ajax loading support.
If anyone really wants this functionality in django-easy-select2, please feel free to contribute.
Upgrade notes
Version 1.4 introduced backward incompatible changes. Read more in changelog.
Version 1.3 introduced backward incompatible changes. Read more in changelog.
Also, Select2 library was upgraded from 3.4 to 4.0.0. If you are tied to older version, please, use django-easy-select2 1.2.13.
How it looks
Select one of existing values with single-valued choice field (ForeignKeyField, for example):
Easily select 1 or more “categories” for your project, you can also add a new one in the normal, Django-Admin manner by using the green + button with multiple-valued choice field (ManyToManyField):
Quickstart
In your admin.py:
from django.contrib import admin
from easy_select2 import select2_modelform
from polls.models import Poll
PollForm = select2_modelform(Poll, attrs={'width': '250px'})
class PollAdmin(admin.ModelAdmin):
form = PollForm
Thats all. All your choice widgets are select2 widgets 250px wide.
Documentation
You can read more in the documentation.
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
Hashes for django-easy-select2-1.4.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | cfaadab6de312bdd2099550b165c412a0c8f1e8908e19d746e7572fe129f11d1 |
|
MD5 | 3c0e47b9f908d9b73676aec8a639a48b |
|
BLAKE2b-256 | f4ca13ed0b9a11bd4e6c914e73e09dc1f85529d240684f24b2eea071c1df9e13 |