From 4dbf2d907f9d5e86f7ecddc49a17e45d1f2d9367 Mon Sep 17 00:00:00 2001 From: Oscar Vilaplana Date: Sat, 18 May 2013 14:55:55 +0200 Subject: [PATCH] added comment about error behavior with DEBUG=True --- docs/api-guide/renderers.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/api-guide/renderers.md b/docs/api-guide/renderers.md index ed733c653..2a1a6979f 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. ---