summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/shortcuts.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt
index af2da254fb..705de11b69 100644
--- a/docs/topics/http/shortcuts.txt
+++ b/docs/topics/http/shortcuts.txt
@@ -66,8 +66,9 @@ MIME type :mimetype:`application/xhtml+xml`::
def my_view(request):
# View code here...
- return render(request, 'myapp/index.html', {"foo": "bar"},
- content_type="application/xhtml+xml")
+ return render(request, 'myapp/index.html', {
+ 'foo': 'bar',
+ }, content_type='application/xhtml+xml')
This example is equivalent to::
@@ -78,8 +79,7 @@ This example is equivalent to::
# View code here...
t = loader.get_template('myapp/index.html')
c = {'foo': 'bar'}
- return HttpResponse(t.render(c, request),
- content_type="application/xhtml+xml")
+ return HttpResponse(t.render(c, request), content_type='application/xhtml+xml')
``render_to_response()``
========================