Module context_processors
A set of request processors that return dictionaries to be merged into a template context. Each function takes the request object as its only parameter and returns a dictionary to add to the context.
These are referenced from the 'context_processors' option of the configuration
of a DjangoTemplates backend and used by RequestContext.
source linkFunctions
▷ def csrf(request) Context processor that provides a CSRF token, or the string 'NOTPROVIDED' if it has not been provided by either a view decorator or the middleware
▷ def debug(request) Return context variables helpful for debugging.
▷ def media(request) Add media-related context variables to the context.
▷ def static(request) Add static-related context variables to the context.