Skip to content

pbs/django-selectable

 
 

Repository files navigation

PBS FORK NOTE

This was forked in PBS organization from 'mlavin/django-selectable' in March 2023 especially for LearningMedia project. LearningMedia is upgrading to Django4 and as the mlavin repo is not maintained anymore and we found no other trustworthy up to date maintained fork, we needed to fork it ourselves.

Original fork repo: https://github.com/mlavin/django-selectable

Original package page: https://pypi.org/project/django-selectable/

django-selectable

Tools and widgets for using/creating auto-complete selection widgets using Django and jQuery UI.

https://travis-ci.org/mlavin/django-selectable.svg?branch=master https://codecov.io/github/mlavin/django-selectable/coverage.svg?branch=master

Note

This project is looking for additional maintainers to help with Django/jQuery compatibility issues as well as addressing support issues/questions. If you are looking to help out on this project and take a look at the open help-wanted or question and see if you can contribute a fix. Be bold! If you want to take a larger role on the project, please reach out on the mailing list. I'm happy to work with you to get you going on an issue.

Features

  • Works with the latest jQuery UI Autocomplete library
  • Auto-discovery/registration pattern for defining lookups

Installation Requirements

To install:

pip install django-selectable

Next add selectable to your INSTALLED_APPS to include the related css/js:

INSTALLED_APPS = (
    'contrib.staticfiles',
    # Other apps here
    'selectable',
)

The jQuery and jQuery UI libraries are not included in the distribution but must be included in your templates. See the example project for an example using these libraries from the Google CDN.

Once installed you should add the urls to your root url patterns:

urlpatterns = [
    # Other patterns go here
    url(r'^selectable/', include('selectable.urls')),
]

Documentation

Documentation for django-selectable is available on Read The Docs.

Additional Help/Support

You can find additional help or support on the mailing list: http://groups.google.com/group/django-selectable

Contributing

If you think you've found a bug or are interested in contributing to this project check out our contributing guide.

If you are interested in translating django-selectable into your native language you can join the Transifex project.

About

Tools and widgets for using/creating auto-complete selection widgets using Django and jQuery UI. PBS fork.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 60.1%
  • Python 37.2%
  • HTML 2.0%
  • Other 0.7%