tubesync/app/common/context_processors.py

8 lines
125 B
Python
Raw Normal View History

from django.conf import settings
def app_details(request):
return {
'app_version': str(settings.VERSION)
}