twentytab-tree

A django app that allows to create a tree menu and breadcrumb. It provides to create also urls, views and template.


License
MIT
Install
pip install twentytab-tree==0.7

Documentation

twentytab-tree

A django app that allows to create a tree menu and breadcrumb. It provides to create also urls, views and template.

Installation

Use the following command: pip install twentytab-tree

Configuration

  • settings.py
INSTALLED_APPS = {
    ...,
    'mptt',
    'twentytab',
    'tree',
    ...
}
  • urls.py
urlpatterns = patterns('',
    ... ,
    (r'', include('tree.urls')),
    ...
)
  • Static files

Run collectstatic command or map static directory.