Skip to main content

Better ArrayField widget for admin

Project description

Django better admin ArrayField

image

Actions Status

image

Better ArrayField widget for admin

Supported Python versions: Python 3.5 Python 3.6 Python 3.7 Python 3.8

Supported Django versions: 2.0, 2.1, 2.2, 3.0, 3.1

might work with different django/python versions as well but I did not test that.

It changes comma separated widget to list based in admin panel.

Before: Alt text

After: Alt text

Quickstart

Install Django better admin ArrayField:

pip install django-better-admin-arrayfield

Add it to your `INSTALLED_APPS`:

INSTALLED_APPS = (
    ...
    'django_better_admin_arrayfield',
    ...
)

Usage

django_better_admin_arrayfield.models.fields.ArrayField is a drop-in replacement for standard Django ArrayField.

Import it like below and use it in your model class definition.

from django_better_admin_arrayfield.models.fields import ArrayField

Import DynamicArrayMixin like below

from django_better_admin_arrayfield.admin.mixins import DynamicArrayMixin

In your admin class add DynamicArrayMixin: ...

class MyModelAdmin(admin.ModelAdmin, DynamicArrayMixin):

That's it.

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Pre-commit hooks

Install pre-commit black hook

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install -r requirements_dev.txt
(myenv) $ pre-commit install

Credits

Inspired by: https://stackoverflow.com/a/49370480/4638248

Tools used in rendering this package:

History

1.4.0 (2020-10-04)

  • allow choosing subwidget for DynamicArrayWidget

1.3.0 (2020-07-09)

  • Handle default values in form field

1.2.1 (2020-07-09)

  • Fix tests requirements

1.2.0 (2020-07-09)

  • handle default values in model fields

1.1.0 (2020-04-28)

  • Add spanish translations

1.0.7 (2020-04-27)

  • Add possibility to i18n strings

1.0.6 (2020-04-15)

  • Remove debugging print statements
  • use default_app_config for easier integration
  • Support dynamically-added inline forms

1.0.5 (2019-12-30)

  • Add python 3.8 and Django 3.0 to tests

1.0.4 (2019-09-02)

  • Can add item after removing everything from the list

1.0.3 (2019-09-02)

  • Can add item after removing everything from the list
  • Do not call static at startup time

1.0.2 (2019-04-03)

  • If field is required empty list raises ValidationError on clean.

1.0.1 (2019-02-23)

  • Empty list is no longer recognized as changed.

1.0.0 (2019-02-21)

  • First release on PyPI.

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-better-admin-arrayfield-1.4.0.tar.gz (12.7 kB view hashes)

Uploaded Source

Built Distribution

django_better_admin_arrayfield-1.4.0-py2.py3-none-any.whl (14.7 kB view hashes)

Uploaded Python 2 Python 3

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