7 lines
138 B
Python
7 lines
138 B
Python
from django.conf import settings
|
|
|
|
|
|
def release_version(_request):
|
|
return {
|
|
"RELEASE_VERSION": settings.RELEASE_VERSION,
|
|
}
|