diff options
author | Tim Graham <timograham@gmail.com> | 2018-12-27 19:49:03 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2019-01-17 10:50:25 -0500 |
commit | 8045dff98c2533e7e99ce82f80292fc6f3bb7e1f (patch) | |
tree | cea0480096b2b285b4664db28b30e3b36db6092e /docs/ref/template-response.txt | |
parent | 573ec714e5f52eccde01bbac3836d0edafcb2c20 (diff) | |
download | django-8045dff98c2533e7e99ce82f80292fc6f3bb7e1f.tar.gz |
Refs #27829 -- Removed settings.DEFAULT_CONTENT_TYPE per deprecation timeline.
Diffstat (limited to 'docs/ref/template-response.txt')
-rw-r--r-- | docs/ref/template-response.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/template-response.txt b/docs/ref/template-response.txt index 6e2f736281..e51e99605e 100644 --- a/docs/ref/template-response.txt +++ b/docs/ref/template-response.txt @@ -76,7 +76,7 @@ Methods The value included in the HTTP ``Content-Type`` header, including the MIME type specification and the character set encoding. If ``content_type`` is specified, then its value is used. Otherwise, - :setting:`DEFAULT_CONTENT_TYPE` is used. + ``'text/html'`` is used. ``status`` The HTTP status code for the response. @@ -171,7 +171,7 @@ Methods The value included in the HTTP ``Content-Type`` header, including the MIME type specification and the character set encoding. If ``content_type`` is specified, then its value is used. Otherwise, - :setting:`DEFAULT_CONTENT_TYPE` is used. + ``'text/html'`` is used. ``status`` The HTTP status code for the response. |