Skip to content

ajeebkp23/django-easy-select2

 
 

Repository files navigation

This is django application that brings select2 widget to select inputs in admin.


Python 2.7, 3.x pypi Travis Build coverage MIT License


Project aims to support Python 2.7 and 3.4 (at least), Django 1.7, 1.8 and 1.9.

UPGRADE NOTES : Version 1.3 introduced backward incompatible changes. Read more in changelog.

Also, Select2 library was upgraded from 3.4 to 4.0.0. If you are tied to older version, please, use django-easy-select2 1.2.13.

How it looks

Select one of existing values with single-valued choice field (ForeignKeyField, for example):

https://github.com/asyncee/django-easy-select2/raw/master/screenshots/select2_single.png

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):

https://github.com/asyncee/django-easy-select2/raw/master/screenshots/select2_multiple.png

Quickstart

In your admin.py:

from django.contrib import admin
from easy_select2 import select2_modelform
from polls.models import Poll

PollForm = select2_modelform(Poll, attrs={'width': '250px'})

class PollAdmin(admin.ModelAdmin):
    form = PollForm

Thats all. All your choice widgets are select2 widgets 250px wide.

Documentation

You can read more in the documentation.

About

Select2 input widget for django selectable fields.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 91.9%
  • JavaScript 7.1%
  • Other 1.0%