8 lines
126 B
Python
Executable File
8 lines
126 B
Python
Executable File
from django.conf import settings
|
|
|
|
|
|
def custom_context(request):
|
|
return {
|
|
'BUILD_DATE': settings.BUILD_DATE,
|
|
}
|