smart_unicode lies in django.utils.encoding in the newest django; see: http://docs...
[wolnelektury.git] / wolnelektury / context_processors.py
1
2 def extra_settings(request):
3     from django.conf import settings
4     return {
5         'STATIC_URL': settings.STATIC_URL,
6     }