aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/renderers.md
diff options
context:
space:
mode:
authorTom Christie2013-05-18 06:45:59 -0700
committerTom Christie2013-05-18 06:45:59 -0700
commitc8dc5b691b18ea1f4dd9e00a73f62789adfe0e47 (patch)
tree82fee42c9c3bcfd5e58438cff4f818b281f71e1e /docs/api-guide/renderers.md
parent304c07681d256c4e3c6e1e1485bf9b905ba431fb (diff)
parent4dbf2d907f9d5e86f7ecddc49a17e45d1f2d9367 (diff)
downloaddjango-rest-framework-c8dc5b691b18ea1f4dd9e00a73f62789adfe0e47.tar.bz2
Merge pull request #856 from grimborg/http_debug_error_page_doc
added comment about error behavior with DEBUG=True
Diffstat (limited to 'docs/api-guide/renderers.md')
-rw-r--r--docs/api-guide/renderers.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/api-guide/renderers.md b/docs/api-guide/renderers.md
index ed733c65..2a1a6979 100644
--- a/docs/api-guide/renderers.md
+++ b/docs/api-guide/renderers.md
@@ -272,6 +272,8 @@ Exceptions raised and handled by an HTML renderer will attempt to render using o
* Load and render a template named `api_exception.html`.
* Render the HTTP status code and text, for example "404 Not Found".
+**Note**: If `DEBUG=True`, Django's standard traceback error page will be displayed instead of rendering the HTTP status code and text.
+
Templates will render with a `RequestContext` which includes the `status_code` and `details` keys.
---