forked from 00dani/lemoncurry
7 lines
197 B
Python
7 lines
197 B
Python
from debug_toolbar.middleware import show_toolbar as core_show_toolbar
|
|
|
|
|
|
def show_toolbar(request):
|
|
if request.path.endswith('/amp'):
|
|
return False
|
|
return core_show_toolbar(request)
|