Skip to main content

Django multiple choices field

Project description

django-multipleselectionfield

Build Status Coverage PyPi

A new model and form field. With this you can get a multiple select from a choices

Initial code got from https://github.com/goinnn/django-multiselectfield by Pablo Martin

But after more than 2 years without activity and no fork taking the control of it, it may be time to move on. Here is an attempt of a small renaming (to avoid name conflicts in packages), and including the improvements of most of the existing forks.

The LPGL v3 licence is preserved.

Originally, this egg is inspired by this [snippet](<http://djangosnippets.org/snippets/1200/)

Installation

In your models.py

from multipleselectionfield import MultipleSelectionField

...

MY_CHOICES = (('item_key1', 'Item title 1.1'),
              ('item_key2', 'Item title 1.2'),
              ('item_key3', 'Item title 1.3'),
              ('item_key4', 'Item title 1.4'),
              ('item_key5', 'Item title 1.5'))

MY_CHOICES2 = ((1, 'Item title 2.1'),
               (2, 'Item title 2.2'),
               (3, 'Item title 2.3'),
               (4, 'Item title 2.4'),
               (5, 'Item title 2.5'))

class MyModel(models.Model):

    .....

    my_field = MultipleSelectionField(choices=MY_CHOICES)
    my_field2 = MultipleSelectionField(choices=MY_CHOICES2,
                                 max_choices=3,
                                 max_length=3)

In your settings.py

Only you need it, if you want the translation of django-multipleselectionfield

INSTALLED_APPS = (
    #...
    'multipleselectionfield',
    #...        
)

Example project

In the source tree, you will find a directory called
example It contains a readily setup project that uses django-multipleselectionfield. You can run it as usual:

python manage.py migrate --noinput
python manage.py loaddata app_data
python manage.py runserver

1.1.0 (2022-10-06)

  • Drop support Python 2
  • Drop support Django 3 (use v1.0.0)
  • Added support Django 4

1.0.0 (2019-05-19)

  • Make the project work again

0.9.0 (2016-09-06)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-multipleselectionfield-1.1.1.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-multipleselectionfield-1.1.1.tar.gz.

File metadata

File hashes

Hashes for django-multipleselectionfield-1.1.1.tar.gz
Algorithm Hash digest
SHA256 b502ad6dd559d47d1e88a68f39379153531b3361569347f55b8c630c8feced6e
MD5 30b182a7554c9985f3380765a30a1f09
BLAKE2b-256 b110bf94c34b90d53f44d400573178d75e9829c4cca1d87922c0c09129c3f49b

See more details on using hashes here.

File details

Details for the file django_multipleselectionfield-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_multipleselectionfield-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8d9ae2582ad39649ef186d354caf3ad53ce5e7707fb6d7ae477279daf4cc0244
MD5 5875300bf0ad35f509291bf27385d426
BLAKE2b-256 57e7caba1e034e91ba7a3179da68bbaaf1447d2c74bf0bab72a035a44f10287c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page