# 62 404 and 500

* adds custom 404 and 500 error handling views
* adds/updates translations
This commit is contained in:
2022-01-12 16:45:55 +01:00
parent 6342044ff9
commit a9962b4d20
6 changed files with 92 additions and 20 deletions
+4 -1
View File
@@ -57,4 +57,7 @@ urlpatterns = [
if DEBUG:
urlpatterns += [
path('__debug__/', include(debug_toolbar.urls)),
]
]
handler404 = "konova.views.get_404_view"
handler500 = "konova.views.get_500_view"