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