Some changes that somehow got lost on my file system.
[redakcja.git] / platforma / context_processors.py
1 # -*- coding: utf-8
2
3 def settings(request):
4     from django.conf import settings
5     return {
6         'MEDIA_URL': settings.MEDIA_URL,
7         'STATIC_URL': settings.STATIC_URL,
8     }