diff --git a/docs/ref/template-response.txt b/docs/ref/template-response.txt
index 4332e6e..3b136b6 100644
|
a
|
b
|
change is always applied. If you want to force the content to be
|
| 189 | 189 | re-rendered, you can re-evaluate the rendered content, and assign |
| 190 | 190 | the content of the response manually:: |
| 191 | 191 | |
| 192 | | # Set up a baked TemplateResponse |
| | 192 | # Set up a rendered TemplateResponse |
| 193 | 193 | >>> t = TemplateResponse(request, 'original.html', {}) |
| 194 | 194 | >>> t.render() |
| 195 | 195 | >>> print t.content |
| 196 | 196 | Original content |
| 197 | 197 | |
| 198 | | # Rebaking doesn't change content |
| | 198 | # Re-rendering doesn't change content |
| 199 | 199 | >>> t.template_name = 'new.html' |
| 200 | 200 | >>> t.render() |
| 201 | 201 | >>> print t.content |