template.Template
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

class Template [source] This class lives at django.template.Template. The constructor

2025-01-10 15:47:30
template.loaders.locmem.Loader
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

class locmem.Loader Loads templates from a Python dictionary. This is useful for testing. This

2025-01-10 15:47:30
template.Context.update()
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

Context.update(other_dict) [source] In addition to push() and pop()

2025-01-10 15:47:30
template.Engine.select_template()
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

Engine.select_template(self, template_name_list) [source] Like get_template()

2025-01-10 15:47:30
template.loaders.base.Loader
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

class Loader [source] Loads templates from a given source, such as the filesystem or a database

2025-01-10 15:47:30
template.loaders.app_directories.Loader
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

class app_directories.Loader Loads templates from Django apps on the filesystem. For each app in INSTALLED_APPS

2025-01-10 15:47:30
template.loaders.base.Loader.get_contents()
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

get_contents(origin) Returns the contents for a template given a Origin instance. This

2025-01-10 15:47:30
template.base.Origin.name
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

name The path to the template as returned by the template loader. For loaders that read from the file system, this is the full

2025-01-10 15:47:30
template.RequestContext
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

class RequestContext(request, dict_=None, processors=None) [source] Django comes with a special

2025-01-10 15:47:30
template.context_processors.debug()
  • References/Python/Django/API/Templates/The Django template language: for Python programmers

debug() [source] If this processor is enabled, every RequestContext will contain

2025-01-10 15:47:30