summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/templates/api.txt11
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt
index 08c86d99fc..d07c65d9f2 100644
--- a/docs/ref/templates/api.txt
+++ b/docs/ref/templates/api.txt
@@ -575,11 +575,16 @@ django.contrib.messages.context_processors.messages
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If :setting:`TEMPLATE_CONTEXT_PROCESSORS` contains this processor, every
-``RequestContext`` will contain a single additional variable:
+``RequestContext`` will contain these two variables:
* ``messages`` -- A list of messages (as strings) that have been set
- via the user model (using ``user.message_set.create``) or through
- the :doc:`messages framework </ref/contrib/messages>`.
+ via the :doc:`messages framework </ref/contrib/messages>`.
+* ``DEFAULT_MESSAGE_LEVELS`` -- A mapping of the message level names to
+ :ref:`their numeric value <message-level-constants>`.
+
+.. versionchanged:: 1.7
+
+ The ``DEFAULT_MESSAGE_LEVELS`` variable was added.
Writing your own context processors
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~