wagtail/wagtail/tests/context_processors.py
Mads Jensen 8b420b9abc Removed __future__ imports
Also delete add_imports directive from isort configuration
2017-11-27 02:18:30 +00:00

8 lines
226 B
Python

def do_not_use_static_url(request):
def exception():
raise Exception("Do not use STATIC_URL in templates. Use the {% static %} templatetag instead.")
return {
'STATIC_URL': lambda: exception(),
}