messages.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. ======================
  2. The messages framework
  3. ======================
  4. .. module:: django.contrib.messages
  5. :synopsis: Provides cookie- and session-based temporary message storage.
  6. Quite commonly in web applications, you may need to display a one-time
  7. notification message (also know as "flash message") to the user after
  8. processing a form or some other types of user input. For this, Django provides
  9. full support for cookie- and session-based messaging, for both anonymous and
  10. authenticated users. The messages framework allows you to temporarily store
  11. messages in one request and retrieve them for display in a subsequent request
  12. (usually the next one). Every message is tagged with a specific ``level`` that
  13. determines its priority (e.g., ``info``, ``warning``, or ``error``).
  14. Enabling messages
  15. =================
  16. Messages are implemented through a :doc:`middleware </ref/middleware>`
  17. class and corresponding :doc:`context processor </ref/templates/api>`.
  18. To enable message functionality, do the following:
  19. * Edit the :setting:`MIDDLEWARE_CLASSES` setting and make sure
  20. it contains ``'django.contrib.messages.middleware.MessageMiddleware'``.
  21. If you are using a :ref:`storage backend <message-storage-backends>` that
  22. relies on :doc:`sessions </topics/http/sessions>` (the default),
  23. ``'django.contrib.sessions.middleware.SessionMiddleware'`` must be
  24. enabled and appear before ``MessageMiddleware`` in your
  25. :setting:`MIDDLEWARE_CLASSES`.
  26. * Edit the :setting:`TEMPLATE_CONTEXT_PROCESSORS` setting and make sure
  27. it contains ``'django.contrib.messages.context_processors.messages'``.
  28. * Add ``'django.contrib.messages'`` to your :setting:`INSTALLED_APPS`
  29. setting
  30. The default ``settings.py`` created by ``django-admin.py startproject`` has
  31. ``MessageMiddleware`` activated and the ``django.contrib.messages`` app
  32. installed. Also, the default value for :setting:`TEMPLATE_CONTEXT_PROCESSORS`
  33. contains ``'django.contrib.messages.context_processors.messages'``.
  34. If you don't want to use messages, you can remove the
  35. ``MessageMiddleware`` line from :setting:`MIDDLEWARE_CLASSES`, the ``messages``
  36. context processor from :setting:`TEMPLATE_CONTEXT_PROCESSORS` and
  37. ``'django.contrib.messages'`` from your :setting:`INSTALLED_APPS`.
  38. Configuring the message engine
  39. ==============================
  40. .. _message-storage-backends:
  41. Storage backends
  42. ----------------
  43. The messages framework can use different backends to store temporary messages.
  44. If the default FallbackStorage isn't suitable to your needs, you can change
  45. which backend is being used by adding a `MESSAGE_STORAGE`_ to your
  46. settings, referencing the module and class of the storage class. For
  47. example::
  48. MESSAGE_STORAGE = 'django.contrib.messages.storage.cookie.CookieStorage'
  49. The value should be the full path of the desired storage class.
  50. Three storage classes are available:
  51. ``'django.contrib.messages.storage.session.SessionStorage'``
  52. This class stores all messages inside of the request's session. It
  53. requires Django's ``contrib.sessions`` application.
  54. ``'django.contrib.messages.storage.cookie.CookieStorage'``
  55. This class stores the message data in a cookie (signed with a secret hash
  56. to prevent manipulation) to persist notifications across requests. Old
  57. messages are dropped if the cookie data size would exceed 4096 bytes.
  58. ``'django.contrib.messages.storage.fallback.FallbackStorage'``
  59. This is the default storage class.
  60. This class first uses CookieStorage for all messages, falling back to using
  61. SessionStorage for the messages that could not fit in a single cookie.
  62. Since it is uses SessionStorage, it also requires Django's
  63. ``contrib.sessions`` application.
  64. To write your own storage class, subclass the ``BaseStorage`` class in
  65. ``django.contrib.messages.storage.base`` and implement the ``_get`` and
  66. ``_store`` methods.
  67. Message levels
  68. --------------
  69. The messages framework is based on a configurable level architecture similar
  70. to that of the Python logging module. Message levels allow you to group
  71. messages by type so they can be filtered or displayed differently in views and
  72. templates.
  73. The built-in levels (which can be imported from ``django.contrib.messages``
  74. directly) are:
  75. =========== ========
  76. Constant Purpose
  77. =========== ========
  78. ``DEBUG`` Development-related messages that will be ignored (or removed) in a production deployment
  79. ``INFO`` Informational messages for the user
  80. ``SUCCESS`` An action was successful, e.g. "Your profile was updated successfully"
  81. ``WARNING`` A failure did not occur but may be imminent
  82. ``ERROR`` An action was **not** successful or some other failure occurred
  83. =========== ========
  84. The `MESSAGE_LEVEL`_ setting can be used to change the minimum recorded level
  85. (or it can be `changed per request`_). Attempts to add messages of a level less
  86. than this will be ignored.
  87. .. _`changed per request`: `Changing the minimum recorded level per-request`_
  88. Message tags
  89. ------------
  90. Message tags are a string representation of the message level plus any
  91. extra tags that were added directly in the view (see
  92. `Adding extra message tags`_ below for more details). Tags are stored in a
  93. string and are separated by spaces. Typically, message tags
  94. are used as CSS classes to customize message style based on message type. By
  95. default, each level has a single tag that's a lowercase version of its own
  96. constant:
  97. ============== ===========
  98. Level Constant Tag
  99. ============== ===========
  100. ``DEBUG`` ``debug``
  101. ``INFO`` ``info``
  102. ``SUCCESS`` ``success``
  103. ``WARNING`` ``warning``
  104. ``ERROR`` ``error``
  105. ============== ===========
  106. To change the default tags for a message level (either built-in or custom),
  107. set the `MESSAGE_TAGS`_ setting to a dictionary containing the levels
  108. you wish to change. As this extends the default tags, you only need to provide
  109. tags for the levels you wish to override::
  110. from django.contrib.messages import constants as messages
  111. MESSAGE_TAGS = {
  112. messages.INFO: '',
  113. 50: 'critical',
  114. }
  115. Using messages in views and templates
  116. =====================================
  117. Adding a message
  118. ----------------
  119. To add a message, call::
  120. from django.contrib import messages
  121. messages.add_message(request, messages.INFO, 'Hello world.')
  122. Some shortcut methods provide a standard way to add messages with commonly
  123. used tags (which are usually represented as HTML classes for the message)::
  124. messages.debug(request, '%s SQL statements were executed.' % count)
  125. messages.info(request, 'Three credits remain in your account.')
  126. messages.success(request, 'Profile details updated.')
  127. messages.warning(request, 'Your account expires in three days.')
  128. messages.error(request, 'Document deleted.')
  129. Displaying messages
  130. -------------------
  131. In your template, use something like::
  132. {% if messages %}
  133. <ul class="messages">
  134. {% for message in messages %}
  135. <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
  136. {% endfor %}
  137. </ul>
  138. {% endif %}
  139. If you're using the context processor, your template should be rendered with a
  140. ``RequestContext``. Otherwise, ensure ``messages`` is available to
  141. the template context.
  142. Even if you know there is only just one message, you should still iterate over
  143. the ``messages`` sequence, because otherwise the message storage will not be cleared
  144. for the next request.
  145. Creating custom message levels
  146. ------------------------------
  147. Messages levels are nothing more than integers, so you can define your own
  148. level constants and use them to create more customized user feedback, e.g.::
  149. CRITICAL = 50
  150. def my_view(request):
  151. messages.add_message(request, CRITICAL, 'A serious error occurred.')
  152. When creating custom message levels you should be careful to avoid overloading
  153. existing levels. The values for the built-in levels are:
  154. .. _message-level-constants:
  155. ============== =====
  156. Level Constant Value
  157. ============== =====
  158. ``DEBUG`` 10
  159. ``INFO`` 20
  160. ``SUCCESS`` 25
  161. ``WARNING`` 30
  162. ``ERROR`` 40
  163. ============== =====
  164. If you need to identify the custom levels in your HTML or CSS, you need to
  165. provide a mapping via the `MESSAGE_TAGS`_ setting.
  166. .. note::
  167. If you are creating a reusable application, it is recommended to use
  168. only the built-in `message levels`_ and not rely on any custom levels.
  169. Changing the minimum recorded level per-request
  170. -----------------------------------------------
  171. The minimum recorded level can be set per request via the ``set_level``
  172. method::
  173. from django.contrib import messages
  174. # Change the messages level to ensure the debug message is added.
  175. messages.set_level(request, messages.DEBUG)
  176. messages.debug(request, 'Test message...')
  177. # In another request, record only messages with a level of WARNING and higher
  178. messages.set_level(request, messages.WARNING)
  179. messages.success(request, 'Your profile was updated.') # ignored
  180. messages.warning(request, 'Your account is about to expire.') # recorded
  181. # Set the messages level back to default.
  182. messages.set_level(request, None)
  183. Similarly, the current effective level can be retrieved with ``get_level``::
  184. from django.contrib import messages
  185. current_level = messages.get_level(request)
  186. For more information on how the minimum recorded level functions, see
  187. `Message levels`_ above.
  188. Adding extra message tags
  189. -------------------------
  190. For more direct control over message tags, you can optionally provide a string
  191. containing extra tags to any of the add methods::
  192. messages.add_message(request, messages.INFO, 'Over 9000!',
  193. extra_tags='dragonball')
  194. messages.error(request, 'Email box full', extra_tags='email')
  195. Extra tags are added before the default tag for that level and are space
  196. separated.
  197. Failing silently when the message framework is disabled
  198. -------------------------------------------------------
  199. If you're writing a reusable app (or other piece of code) and want to include
  200. messaging functionality, but don't want to require your users to enable it
  201. if they don't want to, you may pass an additional keyword argument
  202. ``fail_silently=True`` to any of the ``add_message`` family of methods. For
  203. example::
  204. messages.add_message(request, messages.SUCCESS, 'Profile details updated.',
  205. fail_silently=True)
  206. messages.info(request, 'Hello world.', fail_silently=True)
  207. .. note::
  208. Setting ``fail_silently=True`` only hides the ``MessageFailure`` that would
  209. otherwise occur when the messages framework disabled and one attempts to
  210. use one of the ``add_message`` family of methods. It does not hide failures
  211. that may occur for other reasons.
  212. Expiration of messages
  213. ======================
  214. The messages are marked to be cleared when the storage instance is iterated
  215. (and cleared when the response is processed).
  216. To avoid the messages being cleared, you can set the messages storage to
  217. ``False`` after iterating::
  218. storage = messages.get_messages(request)
  219. for message in storage:
  220. do_something_with(message)
  221. storage.used = False
  222. Behavior of parallel requests
  223. =============================
  224. Due to the way cookies (and hence sessions) work, **the behavior of any
  225. backends that make use of cookies or sessions is undefined when the same
  226. client makes multiple requests that set or get messages in parallel**. For
  227. example, if a client initiates a request that creates a message in one window
  228. (or tab) and then another that fetches any uniterated messages in another
  229. window, before the first window redirects, the message may appear in the
  230. second window instead of the first window where it may be expected.
  231. In short, when multiple simultaneous requests from the same client are
  232. involved, messages are not guaranteed to be delivered to the same window that
  233. created them nor, in some cases, at all. Note that this is typically not a
  234. problem in most applications and will become a non-issue in HTML5, where each
  235. window/tab will have its own browsing context.
  236. Settings
  237. ========
  238. A few :doc:`Django settings </ref/settings>` give you control over message
  239. behavior:
  240. MESSAGE_LEVEL
  241. -------------
  242. Default: ``messages.INFO``
  243. This sets the minimum message that will be saved in the message storage. See
  244. `Message levels`_ above for more details.
  245. .. admonition:: Important
  246. If you override ``MESSAGE_LEVEL`` in your settings file and rely on any of
  247. the built-in constants, you must import the constants module directly to
  248. avoid the potential for circular imports, e.g.::
  249. from django.contrib.messages import constants as message_constants
  250. MESSAGE_LEVEL = message_constants.DEBUG
  251. If desired, you may specify the numeric values for the constants directly
  252. according to the values in the above :ref:`constants table
  253. <message-level-constants>`.
  254. MESSAGE_STORAGE
  255. ---------------
  256. Default: ``'django.contrib.messages.storage.user_messages.FallbackStorage'``
  257. Controls where Django stores message data. Valid values are:
  258. * ``'django.contrib.messages.storage.fallback.FallbackStorage'``
  259. * ``'django.contrib.messages.storage.session.SessionStorage'``
  260. * ``'django.contrib.messages.storage.cookie.CookieStorage'``
  261. See `Storage backends`_ for more details.
  262. MESSAGE_TAGS
  263. ------------
  264. Default::
  265. {messages.DEBUG: 'debug',
  266. messages.INFO: 'info',
  267. messages.SUCCESS: 'success',
  268. messages.WARNING: 'warning',
  269. messages.ERROR: 'error',}
  270. This sets the mapping of message level to message tag, which is typically
  271. rendered as a CSS class in HTML. If you specify a value, it will extend
  272. the default. This means you only have to specify those values which you need
  273. to override. See `Displaying messages`_ above for more details.
  274. .. admonition:: Important
  275. If you override ``MESSAGE_TAGS`` in your settings file and rely on any of
  276. the built-in constants, you must import the ``constants`` module directly to
  277. avoid the potential for circular imports, e.g.::
  278. from django.contrib.messages import constants as message_constants
  279. MESSAGE_TAGS = {message_constants.INFO: ''}
  280. If desired, you may specify the numeric values for the constants directly
  281. according to the values in the above :ref:`constants table
  282. <message-level-constants>`.
  283. SESSION_COOKIE_DOMAIN
  284. ---------------------
  285. Default: ``None``
  286. The storage backends that use cookies -- ``CookieStorage`` and
  287. ``FallbackStorage`` -- use the value of :setting:`SESSION_COOKIE_DOMAIN` in
  288. setting their cookies. See the :doc:`settings documentation </ref/settings>`
  289. for more information on how this works and why you might need to set it.
  290. .. _Django settings: ../settings/