Skip to the content.

Django Hierarchical Models

PyPI version Python Versions Django Versions CI Status License

A Django app that provides a hierarchical configuration pattern with automatic inheritance between related models at any number of levels deep.

Documentation

Use Cases

Features

Installation

pip install djhierarchical

Add hierarchical to your INSTALLED_APPS setting:

INSTALLED_APPS = [
    # ...
    'hierarchical',
    # ...
]

Note: The package name on PyPI is djhierarchical, but the Django app name to use in INSTALLED_APPS is hierarchical.

License

This project is licensed under the MIT License - see the LICENSE file for details.