Private
Public Access
1
0

taking logo from static

This commit is contained in:
Sander Roosendaal
2020-06-03 13:09:00 +02:00
parent 2b230a8edc
commit 28b60e3fd0

View File

@@ -17,7 +17,7 @@ def landingview(request):
)
def logoview(request):
image_data = open(settings.MEDIA_ROOT+"/apple-icon-144x144.png", "rb").read()
image_data = open(settings.STATIC_ROOT+"/static/img/apple-icon-144x144.png", "rb").read()
return HttpResponse(image_data, content_type="image/png")