mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-13 17:53:12 +00:00
7 lines
225 B
Python
7 lines
225 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(),
|
|
}
|