DOOMer / django-selectable

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

Home Page:http://django-selectable.readthedocs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-selectable

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

Build Status :target: https://secure.travis-ci.org/mlavin/django-selectable

Features

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

Installation Requirements

Note

Version 0.8 drops support for Django < 1.5

Version 0.7 adds experimental support for Python 3.2+ when used with Django 1.5+

Version 0.6 drops support for Django < 1.3

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 = patterns('',
    # Other patterns go here
    (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.

http://django-selectable.readthedocs.org/

License:BSD 2-Clause "Simplified" License


Languages

Language:JavaScript 59.0%Language:Python 39.0%Language:Shell 1.5%Language:CSS 0.5%