Select2 widget for django admin¶
Contents:
- 1. Installation
- 2. Quickstart
- 3. Configuration
- 4. Usage
- 5. Reference
- 6. Sampleproject
- 7. Changelog
- 7.1. Version ?.?.?
- 7.2. Version 1.5.8
- 7.3. Version 1.5.7
- 7.4. Version 1.5.6
- 7.5. Version 1.5.5
- 7.6. Version 1.5.4
- 7.7. Version 1.5.3
- 7.8. Version 1.5.2
- 7.9. Version 1.5.1
- 7.10. Version 1.5.0
- 7.11. Version 1.4.0
- 7.12. Version 1.3.4
- 7.13. Version 1.3.3
- 7.14. Version 1.3.2
- 7.15. Version 1.3.1
- 7.16. Version 1.3
- 7.17. Version 1.2
- 7.18. Version 1.1
Introduction¶
This is django application that brings select2 widget to select inputs in admin.
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):

Continue to Installation.