9 lines
294 B
Python
9 lines
294 B
Python
|
def navbar_links(request):
|
||
|
return {
|
||
|
"nav_links": [
|
||
|
{'view': 'dashboard', 'label': 'Dashboard'},
|
||
|
{'view': 'projects', 'label': 'Projects'},
|
||
|
{'view': 'parents', 'label': 'Parents'},
|
||
|
{'view': 'import', 'label': 'Import'},
|
||
|
]
|
||
|
}
|