Installation
Requirements
Python 3.8+
Django 3.2+
Optional dependencies (required only for the modules that use them):
Package |
Used by |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Install
pip install django-pragmatic
Add pragmatic to INSTALLED_APPS:
INSTALLED_APPS = [
...
'pragmatic',
]
Run migrations to create the DeletedObject table (only needed if you use
DeletedObject):
python manage.py migrate pragmatic