django-rehive-extras

Extras for Django


License
MIT
Install
pip install django-rehive-extras==1.3.0

Documentation

Rehive Logo

Django Rehive Extras

Extra utilities for using Django.

Features

  • Python >= 3.6
  • Django >= 3.0
  • Money model field using decimals.
  • Date model with created/updated field.
  • State model that stores the previous state of a model instance in memory.
  • Cascading archive model class.
  • Integrated model class that supports date, state and cascading archives.

Getting started

  1. Install the package:
pip install django-rehive-extras
  1. Add "django_rehive_extras" to your INSTALLED_APPS settings like this:
INSTALLED_APPS = [
    ...
    'django_rehive_extras',
]