Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/20tab/twentytab-tree

A django app that allows to create a tree menu and breadcrumb. It provides to create also urls, views and template.
https://github.com/20tab/twentytab-tree

Last synced: 21 days ago
JSON representation

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

Awesome Lists containing this project

README

        

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

```py
INSTALLED_APPS = {
...,
'mptt',
'twentytab',
'tree',
...
}
```

- urls.py

```py
urlpatterns = patterns('',
... ,
(r'', include('tree.urls')),
...
)

```

- Static files

Run collectstatic command or map static directory.