Removed subversion files
[redakcja.git] / platforma / context_processors.py
1 # -*- coding: utf-8
2 __author__="lreqc"
3 __date__ ="$2009-09-03 08:34:10$"
4
5 def settings(request):
6     from django.conf import settings
7     return {'MEDIA_URL': settings.MEDIA_URL, 
8             'STATIC_URL': settings.STATIC_URL,
9             'REDMINE_URL': settings.REDMINE_URL }
10
11