django-closuredag¶
A django model to represent direct acyclic graph coupled with closure table
Documentation¶
The full documentation is at https://django-closuredag.readthedocs.io.
Quickstart¶
Install django-closuredag:
pip install django-closuredag
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_closuredag.apps.DjangoClosuredagConfig',
...
)
Add django-closuredag’s URL patterns:
from django_closuredag import urls as django_closuredag_urls
urlpatterns = [
...
url(r'^', include(django_closuredag_urls)),
...
]
Features¶
- TODO
Running Tests¶
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox