summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2018-10-11 12:46:46 +0100
committerTim Graham <timograham@gmail.com>2018-10-11 10:26:03 -0400
commit4d7fbbdd7d37a1748ec04bebdce1065a8c19f578 (patch)
tree9a5e415bc3025e2a7c4f900fcd7e83345fdc260b /docs
parentb9b284831a34c45abe63c51138a542c6ec704b10 (diff)
[2.1.x] Simplified deployment checklist docs on customizing error views.
Backport of cecd6561840805c67dd828f881a26dc72de4c823 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/deployment/checklist.txt11
1 files changed, 3 insertions, 8 deletions
diff --git a/docs/howto/deployment/checklist.txt b/docs/howto/deployment/checklist.txt
index 1aa078e247..c31bcac62a 100644
--- a/docs/howto/deployment/checklist.txt
+++ b/docs/howto/deployment/checklist.txt
@@ -252,11 +252,6 @@ Customize the default error views
Django includes default views and templates for several HTTP error codes. You
may want to override the default templates by creating the following templates
in your root template directory: ``404.html``, ``500.html``, ``403.html``, and
-``400.html``. The default views should suffice for 99% of Web applications, but
-if you desire to customize them, see these instructions which also contain
-details about the default templates:
-
-* :ref:`http_not_found_view`
-* :ref:`http_internal_server_error_view`
-* :ref:`http_forbidden_view`
-* :ref:`http_bad_request_view`
+``400.html``. The :ref:`default error views <error-views>` that use these
+templates should suffice for 99% of Web applications, but you can
+:ref:`customize them <customizing-error-views>` as well.