Files
old-saburly-wagtail-web/env/lib/python3.10/site-packages/wagtail/test/context_processors.py
2024-08-27 20:33:44 +02:00

10 lines
298 B
Python

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