mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-03-16 21:30:23 +00:00
13 lines
270 B
Python
13 lines
270 B
Python
import debug_toolbar
|
|
from django.conf.urls import url, include
|
|
from django.http import HttpResponse
|
|
|
|
|
|
def empty_page(request):
|
|
return HttpResponse('<body></body>')
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^$', empty_page),
|
|
url(r'^__debug__/', include(debug_toolbar.urls)),
|
|
]
|