Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/20tab/twentytab-tree
- Owner: 20tab
- License: mit
- Created: 2014-02-13T15:16:59.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-14T08:29:23.000Z (over 10 years ago)
- Last Synced: 2024-11-22T21:48:27.990Z (about 1 month ago)
- Language: Python
- Size: 375 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.