This is a Django integration for Select2
Find a file
2017-11-25 18:56:46 +01:00
django_select2 Switch releases to pbr 2017-11-25 18:56:46 +01:00
docs Switch releases to pbr 2017-11-25 18:56:46 +01:00
tests Drop Python 2 support 2017-11-25 18:56:46 +01:00
.gitignore Add support for Django 1.11 2017-04-14 14:09:23 +02:00
.travis.yml Drop Python 3.5 support 2017-11-25 18:56:46 +01:00
CHANGELOG.md Drop Python 3.5 support 2017-11-25 18:56:46 +01:00
LICENSE Switch to short version of APL2 2017-11-25 18:56:46 +01:00
README.rst Fix coerage badge 2017-11-25 18:56:46 +01:00
requirements-dev.txt Unfreeze development requirements 2017-11-25 18:56:46 +01:00
requirements.txt Switch releases to pbr 2017-11-25 18:56:46 +01:00
setup.cfg Switch README to reStructuredText 2017-11-25 18:56:46 +01:00
setup.py Switch releases to pbr 2017-11-25 18:56:46 +01:00
tox.ini Drop Python 3.5 support 2017-11-25 18:56:46 +01:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Django-Select2
==============

|version| |ci| |coverage| |license|

This is a `Django`_ integration of `Select2`_.

The app includes Select2 driven Django Widgets.

Installation
------------

1. Install ``django_select2``

.. code:: python

    pip install django_select2

2. Add ``django_select2`` to your ``INSTALLED_APPS`` in your project
   settings.

3. Add ``django_select`` to your urlconf if you use any Auto fields.

.. code:: python

    url(r'^select2/', include('django_select2.urls')),

Documentation
-------------

Documentation available at http://django-select2.readthedocs.io/.

External Dependencies
---------------------

-  jQuery version 2 This is not included in the package since it is
   expected that in most scenarios this would already be available.

Example Application
-------------------

Please see ``tests/testapp`` application. This application is used to
manually test the functionalities of this package. This also serves as a
good example.

Changelog
---------

See `CHANGELOG.md`_


.. _Django: https://www.djangoproject.com/
.. _Select2: http://ivaynberg.github.com/select2/
.. _CHANGELOG.md: CHANGELOG.md

.. |version| image:: https://img.shields.io/pypi/v/Django-Select2.svg
   :target: https://pypi.python.org/pypi/Django-Select2/
.. |ci| image:: https://travis-ci.org/applegrew/django-select2.svg?branch=master
   :target: https://travis-ci.org/applegrew/django-select2
.. |coverage| image:: https://codecov.io/gh/applegrew/django-select2/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/applegrew/django-select2
.. |license| image:: https://img.shields.io/badge/license-APL2-blue.svg
   :target: https://raw.githubusercontent.com/applegrew/django-select2/master/LICENSE.txt