2👍
✅
Try editing the urls.py as follows:
if settings.DEBUG:
urlpatterns += patterns('',
(r'^500/$', 'django.views.defaults.server_error'),
)
Then try accessing the page as follows:
Source:stackexchange.com