Getting Started

Installation

pip install django-eav2

Configuration

After you’ve installed the package, you have to add it to your Django apps

INSTALLED_APPS = [
    ...
    'eav',
]

Note: Django 2.2 Users

Since models.JSONField() isn’t supported in Django 2.2, we use django-jsonfield-backport

to provide JSONField functionality.

This requires adding django_jsonfield_backport to your INSTALLED_APPS as well.

INSTALLED_APPS = [
    ...
    'eav',
    'django_jsonfield_backport',
]