summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-25 13:15:12 -0400
committerTim Graham <timograham@gmail.com>2017-05-25 13:15:12 -0400
commit0ea321193a1d7f857544760e12058303edd51362 (patch)
tree8c6b657aa4088a07bf69eb1ca6da79d410ba06b5 /docs
parentbb0b6e526340e638522e093765e534df4e4393d2 (diff)
Fixed #28239 -- Removed docs for a removed arg of template.Context.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/templates/api.txt10
1 files changed, 2 insertions, 8 deletions
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt
index e8d140910d..26c4ad545c 100644
--- a/docs/ref/templates/api.txt
+++ b/docs/ref/templates/api.txt
@@ -214,14 +214,8 @@ different contexts.
.. class:: Context(dict_=None)
- This class lives at ``django.template.Context``. The constructor takes
- two optional arguments:
-
- * A dictionary mapping variable names to variable values.
-
- * The name of the current application. This application name is used
- to help :ref:`resolve namespaced URLs<topics-http-reversing-url-namespaces>`.
- If you're not using namespaced URLs, you can ignore this argument.
+ The constructor of ``django.template.Context`` takes an optional argument —
+ a dictionary mapping variable names to variable values.
For details, see :ref:`playing-with-context` below.