django-staticfiles-select2

select2 meets Django staticfiles


License
Other
Install
pip install django-staticfiles-select2==3.4.5

Documentation

django-staticfiles-select2

Introducing select2 to Django!

Usage

This application is meant to be used with django-staticfiles. Make sure that staticfiles setup and configured, then install this application using pip:

pip install django-staticfiles-select2

Finally, make sure that select2 is listed in your INSTALLED_APPS. You can use this oneliner to add it as well:

INSTALLED_APPS += ['staticfiles_select2', ]

Then in your template code you can do this:

<link rel="stylesheet" href="{{ STATIC_URL }}staticfiles_select2/select2/select2.css">

and:

<script type="text/javascript" src="{{ STATIC_URL }}staticfiles_select2/select2/select2.min.js"></script>

Inspiration

Most part of this project are stolen from django-staticfiles-jquery.