5 lines
123 B
Python
5 lines
123 B
Python
from django.conf import settings
|
|
|
|
|
|
def build_info(request):
|
|
return {'BUILD_TIME': getattr(settings, 'BUILD_TIME', '')}
|