aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/renderers.md
diff options
context:
space:
mode:
authorTom Christie2012-09-26 21:47:19 +0100
committerTom Christie2012-09-26 21:47:19 +0100
commit0cc7030aab9f2b97ce6b5db55d6d1a8a32d50231 (patch)
tree4a47a50776a7611ad59eec2509181a3a6bb4abb2 /docs/api-guide/renderers.md
parent622e001e0bde3742f5e8830436ea0304c892480a (diff)
downloaddjango-rest-framework-0cc7030aab9f2b97ce6b5db55d6d1a8a32d50231.tar.bz2
Fix @api_view decorator tests
Diffstat (limited to 'docs/api-guide/renderers.md')
-rw-r--r--docs/api-guide/renderers.md19
1 files changed, 18 insertions, 1 deletions
diff --git a/docs/api-guide/renderers.md b/docs/api-guide/renderers.md
index 1cd6d1a0..d644599e 100644
--- a/docs/api-guide/renderers.md
+++ b/docs/api-guide/renderers.md
@@ -2,5 +2,22 @@
# Renderers
-## .render(response)
+> Before a TemplateResponse instance can be returned to the client, it must be rendered. The rendering process takes the intermediate representation of template and context, and turns it into the final byte stream that can be served to the client.
+>
+> — [Django documentation][cite]
+## JSONRenderer
+
+## JSONPRenderer
+
+## YAMLRenderer
+
+## XMLRenderer
+
+## DocumentingHTMLRenderer
+
+## TemplatedHTMLRenderer
+
+## Custom renderers
+
+[cite]: https://docs.djangoproject.com/en/dev/ref/template-response/#the-rendering-process \ No newline at end of file