Files
links/core/context_processors.py
T

9 lines
203 B
Python

from django.conf import settings
def build_info(request):
return {
'BUILD_TIME': getattr(settings, 'BUILD_TIME', ''),
'BUILD_VERSION': getattr(settings, 'BUILD_VERSION', ''),
}