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: 4 months 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 (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-14T08:29:23.000Z (about 11 years ago)
- Last Synced: 2025-03-02T13:18:37.409Z (5 months 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.