This is a Django integration of Select2.
The app includes Select2 driven Django Widgets.
-
Install
django_select2
pip install django_select2
-
Add
django_select2
to yourINSTALLED_APPS
in your project settings. -
Add
django_select
to your urlconf if you use any 'Auto' fields.url(r'^select2/', include('django_select2.urls')),
Version 5 is a complete rewrite of the package to drastically reduce the code base and to ensure a future maintainability.
While we feature set remained unchanged, the API changed completely. Major changes:
- Fields have been removed in favor of widgets.
- All version 4 settings have been removed.
- Template tags have been removed.
- 3rd party javascript is served by a CDN.
- No more inline javascript code.
- Remove all existing and to setup the new cache backend.
- Remove the old template tags from your templates:
import_django_select2_js
import_django_select2_css
import_django_select2_js_css
- Add
form.media.css
to the top andform.media.js
to the bottom of your base template. - Upgrade to jQuery version 2, if you are still running version 1.
- Replace old fields with new widgets.
Documentation available at http://django-select2.readthedocs.org/.
- jQuery version 2 This is not included in the package since it is expected that in most scenarios this would already be available.
Please see tests/testapp
application.
This application is used to manually test the functionalities of this package.
This also serves as a good example.
- Samuel Goldszmidt (@ouhouhsami) for reporting many fundamental issues with the code, because of which versions 2.0 and 2.0.1 were released.
- Johannes Hoppe (@codingjoe)
See CHANGELOG.md
Copyright 2012 Nirupam Biswas
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.