We all know what errors are, here I am specifically considering HTTP errors that we all have encountered while visiting websites. 404 pages not found, 500 server errors, 403 HTTP forbidden, etc. are some of the HTTP errors. When we design a website we also have to keep in mind that if somehow a user… Continue Reading »
Tag: Django Errors
Django custom 404 error template page
Learn how to use the Django custom 404 error template page. In this tutorial, you will learn how to create a custom page for page not found errors. And learn how to handle errors in Django with built-in views. Handler 404 is the built-in view. This will allow us to handle the 404 error using… Continue Reading »
Django custom 500 error template page
Learn how to use the Django custom 500 error template page. In this tutorial, you will learn how to create a custom page for internal server errors. And learn how to handle errors in Django with built-in views. Handler 500 is the built-in view. This will allow us to handle the 500 internal server errors… Continue Reading »