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

Uploaded Source

Built Distribution

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