8 lines
129 B
Python
8 lines
129 B
Python
![]() |
from django.conf import settings
|
||
|
|
||
|
|
||
|
def header_logo(request):
|
||
|
return {
|
||
|
'header_logo': settings.HEADER_LOGO_NAME
|
||
|
}
|