rearrangements: new core app, templates in apps, split settings;
[wolnelektury.git] / apps / wolnelektury_core / context_processors.py
1 from django.conf import settings
2
3 def extra_settings(request):
4     return {
5         'STATIC_URL': settings.STATIC_URL,
6         'FULL_STATIC_URL': request.build_absolute_uri(settings.STATIC_URL)
7     }