13 lines
250 B
Python
13 lines
250 B
Python
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from django.http import HttpRequest
|
|
|
|
|
|
def navigation_context(request: HttpRequest) -> dict[str, Any]:
|
|
return {
|
|
"app_name": "VacatureRadar",
|
|
"app_version": "0.1.0",
|
|
}
|