8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-18 08:38:09 +00:00

Regroupement avec l'erreur 500.

This commit is contained in:
Hugo LEVY-FALK 2018-07-20 20:12:03 +02:00
parent f8796c6d04
commit 8d6439f13b
3 changed files with 6 additions and 0 deletions

View file

@ -50,6 +50,7 @@ from django.contrib.auth import views as auth_views
from .views import index, about_page
handler500 = 're2o.views.handler500'
handler404 = 're2o.views.handler404'
urlpatterns = [
url(r'^$', index, name='index'),

View file

@ -229,3 +229,8 @@ def about_page(request):
def handler500(request):
"""The handler view for a 500 error"""
return render(request, 'errors/500.html')
def handler404(request):
"""The handler view for a 404 error"""
return render(request, 'errors/404.html')