X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/67df302167539474edd02b57c2e8bd30349d7625..87ff3f803d2f147e6fa939a99c4c4a4ca6aa965f:/wolnelektury/context_processors.py diff --git a/wolnelektury/context_processors.py b/wolnelektury/context_processors.py index 0cbf60513..c91211605 100644 --- a/wolnelektury/context_processors.py +++ b/wolnelektury/context_processors.py @@ -1,6 +1,7 @@ +from django.conf import settings def extra_settings(request): - from django.conf import settings return { 'STATIC_URL': settings.STATIC_URL, + 'FULL_STATIC_URL': request.build_absolute_uri(settings.STATIC_URL) }