7 lines
118 B
Python
7 lines
118 B
Python
from django.conf import settings
|
|
|
|
def cfg_assets_root(request):
|
|
|
|
return { 'ASSETS_ROOT' : settings.ASSETS_ROOT }
|
|
|