Added the custom HTTP 500 Internal Server Error page.

This commit is contained in:
依瑪貓 2020-08-11 23:12:13 +08:00
parent 3a32e00121
commit 28ee42792d

View File

@ -63,6 +63,18 @@ def logout(request):
return redirect("home")
def http500_view(request):
"""The view of the HTTP 500 Internal Server Error page.
Args:
request (HttpRequest): The request.
Returns:
HttpResponse: The response.
"""
return render(request, "500.html")
@method_decorator(require_GET, name="dispatch")
@method_decorator(login_required, name="dispatch")
class UserListView(ListView):