TimeDispatcher/context_processors.py

17 lines
417 B
Python

from TimeDispatcher.settings import APP_VERSION
def version(request):
return {
"version": APP_VERSION
}
def navbar_links(request):
return {
"nav_links": [
{'view': 'dashboard', 'label': 'Dashboard'},
{'view': 'projects', 'label': 'Projects'},
{'view': 'parents', 'label': 'Parents'},
{'view': 'import', 'label': 'Import'},
]
}