Django
1.0
▾ django
▸ __main__
▸ apps
▸ bin
▸ conf
▸ contrib
▸ core
▸ db
▸ dispatch
▸ forms
▸ http
▸ middleware
▸ shortcuts
▾ template
▸ autoreload
▸ backends
▸ base
▾ context
class
BaseContext
class
Context
class
ContextDict
class
ContextPopException
class
RenderContext
class
RequestContext
▸ context_processors
▸ defaultfilters
▸ defaulttags
▸ engine
▸ exceptions
▸ library
▸ loader
▸ loader_tags
▸ loaders
▸ response
▸ smartif
▸ utils
▸ templatetags
▸ test
▸ urls
▸ utils
▸ views
Class BaseContext
django
.
template
.
context
.
BaseContext
Declaration
class
BaseContext
source
link
Methods
▶
def
__contains__
(
self, key
)
source
link
Overrides
This method is overriden in:
django
.
template
.
context
.
RenderContext
▶
def
__copy__
(
self
)
source
link
Overrides
This method is overriden in:
django
.
template
.
context
.
Context
▷
def
__delitem__
(
self, key
)
Delete a variable from the current context
source
link
▷
def
__eq__
(
self, other
)
Compare two contexts by comparing theirs 'dicts' attributes.
source
link
▶
def
__getitem__
(
self, key
)
Get a variable's value, starting at the current context and going upward
source
link
Overrides
This method is overriden in:
django
.
template
.
context
.
RenderContext
▶
def
__init__
(
self, dict_=None
)
source
link
Overrides
This method is overriden in:
django
.
template
.
context
.
Context
▶
def
__iter__
(
self
)
source
link
Overrides
This method is overriden in:
django
.
template
.
context
.
RenderContext
▷
def
__repr__
(
self
)
source
link
▷
def
__setitem__
(
self, key, value
)
Set a variable in the current context
source
link
▷
def
flatten
(
self
)
Return self.dicts as one dictionary.
source
link
▶
def
get
(
self, key, otherwise=None
)
source
link
Overrides
This method is overriden in:
django
.
template
.
context
.
RenderContext
▶
def
new
(
self, values=None
)
Return a new context with the same properties, but with only the values given in 'values' stored.
source
link
Overrides
This method is overriden in:
django
.
template
.
context
.
RequestContext
▷
def
pop
(
self
)
source
link
▷
def
push
(
self, *args, **kwargs
)
source
link
▷
def
set_upward
(
self, key, value
)
Set a variable in one of the higher contexts if it exists there, otherwise in the current context.
source
link
▷
def
setdefault
(
self, key, default=None
)
source
link
Subclasses
django
.
template
.
context
.
Context
django
.
template
.
context
.
RenderContext
Reexports
Imported in
django.template.base
.
Generated by
nedoc
v0.9 at 2020-12-29 14:04