8 lines
125 B
Python
8 lines
125 B
Python
|
from django.conf import settings
|
||
|
|
||
|
|
||
|
def app_details(request):
|
||
|
return {
|
||
|
'app_version': str(settings.VERSION)
|
||
|
}
|