File: menus.py

package info (click to toggle)
django-menu-generator-ng 1.2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: python: 729; makefile: 17
file content (14 lines) | stat: -rwxr-xr-x 249 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
MENUS = {
    'NAV_MENU': [
        {
            "name": "App1 Feature",
            "url": "/app1-feature"
        }
    ],
    'SECOND_MENU': [
        {
            "name": "Second Menu Feature",
            "url": "named_url"
        }
    ]
}