Skip to content
Snippets Groups Projects
Commit 70562b9d authored by David Baumgold's avatar David Baumgold
Browse files

Merge pull request #3578 from edx/db/500-template-on-studio

Show error page templates on Studio
parents 93b5ccac 71a50c58
No related merge requests found
......@@ -140,3 +140,9 @@ if settings.DEBUG:
# pylint: disable=C0103
handler404 = 'contentstore.views.render_404'
handler500 = 'contentstore.views.render_500'
# display error page templates, for testing purposes
urlpatterns += (
url(r'404', handler404),
url(r'500', handler500),
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment