A Closure based Tree model for Django.
Project description
Django closure tree model.
Abstract base model for creating a Closure Tree using a recursive Postgres view.
http://schinckel.net/2016/01/27/django-trees-via-closure-view/
Usage
Inherit from the Node model:
from closure_tree.models import Node
class MyNode(Node):
name = models.CharField(max_length=30)
Create migrations:
$ ./manage.py makemigrations
Add the CreateTreeClosure migration step:
$ ./manage.py makenigrations --empty myapp
from closure_tree.migrations import CreateTreeClosure
class Migration(migrations.Migration):
dependencies = [
('dummy', '0001_initial'),
]
operations = [
CreateTreeClosure('MyNode'),
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
closure_tree-0.1.0.tar.gz
(4.0 kB
view hashes)
Built Distribution
Close
Hashes for closure_tree-0.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c614c9f0e6ae6778099b45e8e0e89bf37dfab0d5c71b501d5a5e4e02be9129bc |
|
MD5 | 32392857cf31a280a7f985b2091d8971 |
|
BLAKE2b-256 | 0157f0f81902e7ba326f1fc7bb2cbcca388c17182a79823796bd76345eff5f5d |