Which method is best for designing custom error pages in Django?
For example, I've seen methods which design custom views with changes to URLconf, I've seen other methods that use handler404 = "mysite.views.my_custom_page_not_found_view"
in URLconf with no changes to views. I've seen both of these methods explained in the docs. The easiest method I've seen is to simply create a templates/404.html
without any other changes to the app. So which method is best for a production app?