Ticket #10120: render.patch
File render.patch, 500 bytes (added by , 16 years ago) |
---|
-
docs/topics/http/shortcuts.txt
70 70 # View code here... 71 71 t = loader.get_template('myapp/template.html') 72 72 c = Context({'foo': 'bar'}) 73 r =HttpResponse(t.render(c),73 return HttpResponse(t.render(c), 74 74 mimetype="application/xhtml+xml") 75 75 76 76 ``get_object_or_404``