templates.txt 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849
  1. =========
  2. Templates
  3. =========
  4. .. module:: django.template
  5. :synopsis: Django's template system
  6. Being a web framework, Django needs a convenient way to generate HTML
  7. dynamically. The most common approach relies on templates. A template contains
  8. the static parts of the desired HTML output as well as some special syntax
  9. describing how dynamic content will be inserted. For a hands-on example of
  10. creating HTML pages with templates, see :doc:`Tutorial 3 </intro/tutorial03>`.
  11. A Django project can be configured with one or several template engines (or
  12. even zero if you don't use templates). Django ships built-in backends for its
  13. own template system, creatively called the Django template language (DTL), and
  14. for the popular alternative Jinja2_. Backends for other template languages may
  15. be available from third-parties.
  16. Django defines a standard API for loading and rendering templates regardless
  17. of the backend. Loading consists of finding the template for a given identifier
  18. and preprocessing it, usually compiling it to an in-memory representation.
  19. Rendering means interpolating the template with context data and returning the
  20. resulting string.
  21. The :doc:`Django template language </ref/templates/language>` is Django's own
  22. template system. Until Django 1.8 it was the only built-in option available.
  23. It's a good template library even though it's fairly opinionated and sports a
  24. few idiosyncrasies. If you don't have a pressing reason to choose another
  25. backend, you should use the DTL, especially if you're writing a pluggable
  26. application and you intend to distribute templates. Django's contrib apps that
  27. include templates, like :doc:`django.contrib.admin </ref/contrib/admin/index>`,
  28. use the DTL.
  29. For historical reasons, both the generic support for template engines and the
  30. implementation of the Django template language live in the ``django.template``
  31. namespace.
  32. .. _template-engines:
  33. Support for template engines
  34. ============================
  35. .. versionadded:: 1.8
  36. Support for multiple template engines and the :setting:`TEMPLATES` setting
  37. were added in Django 1.8.
  38. Configuration
  39. -------------
  40. Templates engines are configured with the :setting:`TEMPLATES` setting. It's a
  41. list of configurations, one for each engine. The default value is empty. The
  42. ``settings.py`` generated by the :djadmin:`startproject` command defines a
  43. more useful value::
  44. TEMPLATES = [
  45. {
  46. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  47. 'DIRS': [],
  48. 'APP_DIRS': True,
  49. 'OPTIONS': {
  50. # ... some options here ...
  51. },
  52. },
  53. ]
  54. :setting:`BACKEND <TEMPLATES-BACKEND>` is a dotted Python path to a template
  55. engine class implementing Django's template backend API. The built-in backends
  56. are :class:`django.template.backends.django.DjangoTemplates` and
  57. :class:`django.template.backends.jinja2.Jinja2`.
  58. Since most engines load templates from files, the top-level configuration for
  59. each engine contains two common settings:
  60. * :setting:`DIRS <TEMPLATES-DIRS>` defines a list of directories where the
  61. engine should look for template source files, in search order.
  62. * :setting:`APP_DIRS <TEMPLATES-APP_DIRS>` tells whether the engine should
  63. look for templates inside installed applications. Each backend defines a
  64. conventional name for the subdirectory inside applications where its
  65. templates should be stored.
  66. While uncommon, it's possible to configure several instances of the same
  67. backend with different options. In that case you should define a unique
  68. :setting:`NAME <TEMPLATES-NAME>` for each engine.
  69. :setting:`OPTIONS <TEMPLATES-OPTIONS>` contains backend-specific settings.
  70. Usage
  71. -----
  72. .. _template-loading:
  73. .. module:: django.template.loader
  74. The ``django.template.loader`` module defines two functions to load templates.
  75. .. function:: get_template(template_name, dirs=_dirs_undefined, using=None)
  76. This function loads the template with the given name and returns a
  77. ``Template`` object.
  78. The exact type of the return value depends on the backend that loaded the
  79. template. Each backend has its own ``Template`` class.
  80. ``get_template()`` tries each template engine in order until one succeeds.
  81. If the template cannot be found, it raises
  82. :exc:`~django.template.TemplateDoesNotExist`. If the template is found but
  83. contains invalid syntax, it raises
  84. :exc:`~django.template.TemplateSyntaxError`.
  85. How templates are searched and loaded depends on each engine's backend and
  86. configuration.
  87. If you want to restrict the search to a particular template engine, pass
  88. the engine's :setting:`NAME <TEMPLATES-NAME>` in the ``using`` argument.
  89. .. deprecated:: 1.8
  90. The ``dirs`` parameter was deprecated.
  91. .. versionchanged:: 1.8
  92. The ``using`` parameter was added.
  93. .. versionchanged:: 1.8
  94. ``get_template()`` returns a backend-dependent ``Template`` instead
  95. of a :class:`django.template.Template`.
  96. .. function:: select_template(template_name_list, dirs=_dirs_undefined, using=None)
  97. ``select_template()`` is just like ``get_template()``, except it takes a
  98. list of template names. It tries each name in order and returns the first
  99. template that exists.
  100. .. deprecated:: 1.8
  101. The ``dirs`` parameter was deprecated.
  102. .. versionchanged:: 1.8
  103. The ``using`` parameter was added.
  104. .. versionchanged:: 1.8
  105. ``select_template()`` returns a backend-dependent ``Template`` instead
  106. of a :class:`django.template.Template`.
  107. .. currentmodule:: django.template
  108. If loading a template fails, the following two exceptions, defined in
  109. ``django.template``, may be raised:
  110. .. exception:: TemplateDoesNotExist(msg, tried=None, backend=None, chain=None)
  111. This exception is raised when a template cannot be found. It accepts the
  112. following optional arguments for populating the :ref:`template postmortem
  113. <template-postmortem>` on the debug page:
  114. ``backend``
  115. The template backend instance from which the exception originated.
  116. ``tried``
  117. A list of sources that were tried when finding the template. This is
  118. formatted as a list of tuples containing ``(origin, status)``, where
  119. ``origin`` is an :ref:`origin-like <template-origin-api>` object and
  120. ``status`` is a string with the reason the template wasn't found.
  121. ``chain``
  122. A list of intermediate :exc:`~django.template.TemplateDoesNotExist`
  123. exceptions raised when trying to load a template. This is used by
  124. functions, such as :func:`~django.template.loader.get_template`, that
  125. try to load a given template from multiple engines.
  126. .. versionadded:: 1.9
  127. The ``backend``, ``tried``, and ``chain`` arguments were added.
  128. .. exception:: TemplateSyntaxError(msg)
  129. This exception is raised when a template was found but contains errors.
  130. ``Template`` objects returned by ``get_template()`` and ``select_template()``
  131. must provide a ``render()`` method with the following signature:
  132. .. currentmodule:: django.template.backends.base
  133. .. method:: Template.render(context=None, request=None)
  134. Renders this template with a given context.
  135. If ``context`` is provided, it must be a :class:`dict`. If it isn't
  136. provided, the engine will render the template with an empty context.
  137. If ``request`` is provided, it must be an :class:`~django.http.HttpRequest`.
  138. Then the engine must make it, as well as the CSRF token, available in the
  139. template. How this is achieved is up to each backend.
  140. Here's an example of the search algorithm. For this example the
  141. :setting:`TEMPLATES` setting is::
  142. TEMPLATES = [
  143. {
  144. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  145. 'DIRS': [
  146. '/home/html/example.com',
  147. '/home/html/default',
  148. ],
  149. },
  150. {
  151. 'BACKEND': 'django.template.backends.jinja2.Jinja2',
  152. 'DIRS': [
  153. '/home/html/jinja2',
  154. ],
  155. },
  156. ]
  157. If you call ``get_template('story_detail.html')``, here are the files Django
  158. will look for, in order:
  159. * ``/home/html/example.com/story_detail.html`` (``'django'`` engine)
  160. * ``/home/html/default/story_detail.html`` (``'django'`` engine)
  161. * ``/home/html/jinja2/story_detail.html`` (``'jinja2'`` engine)
  162. If you call ``select_template(['story_253_detail.html', 'story_detail.html'])``,
  163. here's what Django will look for:
  164. * ``/home/html/example.com/story_253_detail.html`` (``'django'`` engine)
  165. * ``/home/html/default/story_253_detail.html`` (``'django'`` engine)
  166. * ``/home/html/jinja2/story_253_detail.html`` (``'jinja2'`` engine)
  167. * ``/home/html/example.com/story_detail.html`` (``'django'`` engine)
  168. * ``/home/html/default/story_detail.html`` (``'django'`` engine)
  169. * ``/home/html/jinja2/story_detail.html`` (``'jinja2'`` engine)
  170. When Django finds a template that exists, it stops looking.
  171. .. admonition:: Tip
  172. You can use :func:`~django.template.loader.select_template()` for flexible
  173. template loading. For example, if you've written a news story and want
  174. some stories to have custom templates, use something like
  175. ``select_template(['story_%s_detail.html' % story.id,
  176. 'story_detail.html'])``. That'll allow you to use a custom template for an
  177. individual story, with a fallback template for stories that don't have
  178. custom templates.
  179. It's possible -- and preferable -- to organize templates in subdirectories
  180. inside each directory containing templates. The convention is to make a
  181. subdirectory for each Django app, with subdirectories within those
  182. subdirectories as needed.
  183. Do this for your own sanity. Storing all templates in the root level of a
  184. single directory gets messy.
  185. To load a template that's within a subdirectory, just use a slash, like so::
  186. get_template('news/story_detail.html')
  187. Using the same :setting:`TEMPLATES` option as above, this will attempt to load
  188. the following templates:
  189. * ``/home/html/example.com/news/story_detail.html`` (``'django'`` engine)
  190. * ``/home/html/default/news/story_detail.html`` (``'django'`` engine)
  191. * ``/home/html/jinja2/news/story_detail.html`` (``'jinja2'`` engine)
  192. .. currentmodule:: django.template.loader
  193. In addition, to cut down on the repetitive nature of loading and rendering
  194. templates, Django provides a shortcut function which automates the process.
  195. .. function:: render_to_string(template_name, context=None, context_instance=_context_instance_undefined, request=None, using=None)
  196. ``render_to_string()`` loads a template like :func:`get_template` and
  197. calls its ``render()`` method immediately. It takes the following
  198. arguments.
  199. ``template_name``
  200. The name of the template to load and render. If it's a list of template
  201. names, Django uses :func:`select_template` instead of
  202. :func:`get_template` to find the template.
  203. ``context``
  204. A :class:`dict` to be used as the template's context for rendering.
  205. .. versionchanged:: 1.8
  206. The ``context`` argument used to be called ``dictionary``. That name
  207. is deprecated in Django 1.8 and will be removed in Django 1.10.
  208. ``context`` is now optional. An empty context will be used if it
  209. isn't provided.
  210. ``context_instance``
  211. An instance of :class:`~django.template.Context` or a subclass (e.g., an
  212. instance of :class:`~django.template.RequestContext`) to use as the
  213. template's context.
  214. .. deprecated:: 1.8
  215. The ``context_instance`` argument is deprecated. Use ``context`` and
  216. if needed ``request``.
  217. ``request``
  218. An optional :class:`~django.http.HttpRequest` that will be available
  219. during the template's rendering process.
  220. .. versionadded:: 1.8
  221. The ``request`` argument was added.
  222. See also the :func:`~django.shortcuts.render()` and
  223. :func:`~django.shortcuts.render_to_response()` shortcuts, which call
  224. :func:`render_to_string()` and feed the result into an
  225. :class:`~django.http.HttpResponse` suitable for returning from a view.
  226. Finally, you can use configured engines directly:
  227. .. data:: engines
  228. Template engines are available in ``django.template.engines``::
  229. from django.template import engines
  230. django_engine = engines['django']
  231. template = django_engine.from_string("Hello {{ name }}!")
  232. The lookup key — ``'django'`` in this example — is the engine's
  233. :setting:`NAME <TEMPLATES-NAME>`.
  234. .. module:: django.template.backends
  235. Built-in backends
  236. -----------------
  237. .. module:: django.template.backends.django
  238. .. class:: DjangoTemplates
  239. Set :setting:`BACKEND <TEMPLATES-BACKEND>` to
  240. ``'django.template.backends.django.DjangoTemplates'`` to configure a Django
  241. template engine.
  242. When :setting:`APP_DIRS <TEMPLATES-APP_DIRS>` is ``True``, ``DjangoTemplates``
  243. engines look for templates in the ``templates`` subdirectory of installed
  244. applications. This generic name was kept for backwards-compatibility.
  245. ``DjangoTemplates`` engines accept the following :setting:`OPTIONS
  246. <TEMPLATES-OPTIONS>`:
  247. * ``'allowed_include_roots'``: a list of strings representing allowed prefixes
  248. for the ``{% ssi %}`` template tag. This is a security measure, so that
  249. template authors can't access files that they shouldn't be accessing.
  250. For example, if ``'allowed_include_roots'`` is ``['/home/html',
  251. '/var/www']``, then ``{% ssi /home/html/foo.txt %}`` would work, but ``{%
  252. ssi /etc/passwd %}`` wouldn't.
  253. It defaults to an empty list.
  254. .. deprecated:: 1.8
  255. ``allowed_include_roots`` is deprecated because the {% ssi %} tag is
  256. deprecated.
  257. * ``'context_processors'``: a list of dotted Python paths to callables that
  258. are used to populate the context when a template is rendered with a request.
  259. These callables take a request object as their argument and return a
  260. :class:`dict` of items to be merged into the context.
  261. It defaults to an empty list.
  262. See :class:`~django.template.RequestContext` for more information.
  263. * ``'debug'``: a boolean that turns on/off template debug mode. If it is
  264. ``True``, the fancy error page will display a detailed report for any
  265. exception raised during template rendering. This report contains the
  266. relevant snippet of the template with the appropriate line highlighted.
  267. It defaults to the value of the :setting:`DEBUG` setting.
  268. * ``'loaders'``: a list of dotted Python paths to template loader classes.
  269. Each ``Loader`` class knows how to import templates from a particular
  270. source. Optionally, a tuple can be used instead of a string. The first item
  271. in the tuple should be the ``Loader`` class name, and subsequent items are
  272. passed to the ``Loader`` during initialization.
  273. The default depends on the values of :setting:`DIRS <TEMPLATES-DIRS>` and
  274. :setting:`APP_DIRS <TEMPLATES-APP_DIRS>`.
  275. See :ref:`template-loaders` for details.
  276. * ``'string_if_invalid'``: the output, as a string, that the template system
  277. should use for invalid (e.g. misspelled) variables.
  278. It defaults to an empty string.
  279. See :ref:`invalid-template-variables` for details.
  280. * ``'file_charset'``: the charset used to read template files on disk.
  281. It defaults to the value of :setting:`FILE_CHARSET`.
  282. * ``'libraries'``: A dictionary of labels and dotted Python paths of template
  283. tag modules to register with the template engine. This can be used to add
  284. new libraries or provide alternate labels for existing ones. For example::
  285. OPTIONS={
  286. 'libraries': {
  287. 'myapp_tags': 'path.to.myapp.tags',
  288. 'admin.urls': 'django.contrib.admin.templatetags.admin_urls',
  289. },
  290. }
  291. Libraries can be loaded by passing the corresponding dictionary key to
  292. the :ttag:`{% load %}<load>` tag.
  293. * ``'builtins'``: A list of dotted Python paths of template tag modules to
  294. add to :doc:`built-ins </ref/templates/builtins>`. For example::
  295. OPTIONS={
  296. 'builtins': ['myapp.builtins'],
  297. }
  298. Tags and filters from built-in libraries can be used without first calling
  299. the :ttag:`{% load %} <load>` tag.
  300. .. versionadded:: 1.9
  301. The ``libraries`` and ``builtins`` arguments were added.
  302. .. module:: django.template.backends.jinja2
  303. .. class:: Jinja2
  304. Requires Jinja2_ to be installed:
  305. .. code-block:: console
  306. $ pip install Jinja2
  307. Set :setting:`BACKEND <TEMPLATES-BACKEND>` to
  308. ``'django.template.backends.jinja2.Jinja2'`` to configure a Jinja2_ engine.
  309. When :setting:`APP_DIRS <TEMPLATES-APP_DIRS>` is ``True``, ``Jinja2`` engines
  310. look for templates in the ``jinja2`` subdirectory of installed applications.
  311. The most important entry in :setting:`OPTIONS <TEMPLATES-OPTIONS>` is
  312. ``'environment'``. It's a dotted Python path to a callable returning a Jinja2
  313. environment. It defaults to ``'jinja2.Environment'``. Django invokes that
  314. callable and passes other options as keyword arguments. Furthermore, Django
  315. adds defaults that differ from Jinja2's for a few options:
  316. * ``'autoescape'``: ``True``
  317. * ``'loader'``: a loader configured for :setting:`DIRS <TEMPLATES-DIRS>` and
  318. :setting:`APP_DIRS <TEMPLATES-APP_DIRS>`
  319. * ``'auto_reload'``: ``settings.DEBUG``
  320. * ``'undefined'``: ``DebugUndefined if settings.DEBUG else Undefined``
  321. The default configuration is purposefully kept to a minimum. The ``Jinja2``
  322. backend doesn't create a Django-flavored environment. It doesn't know about
  323. Django context processors, filters, and tags. In order to use Django-specific
  324. APIs, you must configure them into the environment.
  325. For example, you can create ``myproject/jinja2.py`` with this content::
  326. from __future__ import absolute_import # Python 2 only
  327. from django.contrib.staticfiles.storage import staticfiles_storage
  328. from django.core.urlresolvers import reverse
  329. from jinja2 import Environment
  330. def environment(**options):
  331. env = Environment(**options)
  332. env.globals.update({
  333. 'static': staticfiles_storage.url,
  334. 'url': reverse,
  335. })
  336. return env
  337. and set the ``'environment'`` option to ``'myproject.jinja2.environment'``.
  338. Then you could use the following constructs in Jinja2 templates:
  339. .. code-block:: html+jinja
  340. <img src="{{ static('path/to/company-logo.png') }}" alt="Company Logo">
  341. <a href="{{ url('admin:index') }}">Administration</a>
  342. The concepts of tags and filters exist both in the Django template language
  343. and in Jinja2 but they're used differently. Since Jinja2 supports passing
  344. arguments to callables in templates, many features that require a template tag
  345. or filter in Django templates can be achieved simply by calling a function in
  346. Jinja2 templates, as shown in the example above. Jinja2's global namespace
  347. removes the need for template context processors. The Django template language
  348. doesn't have an equivalent of Jinja2 tests.
  349. Custom backends
  350. ---------------
  351. Here's how to implement a custom template backend in order to use another
  352. template system. A template backend is a class that inherits
  353. ``django.template.backends.base.BaseEngine``. It must implement
  354. ``get_template()`` and optionally ``from_string()``. Here's an example for a
  355. fictional ``foobar`` template library::
  356. from django.template import TemplateDoesNotExist, TemplateSyntaxError
  357. from django.template.backends.base import BaseEngine
  358. from django.template.backends.utils import csrf_input_lazy, csrf_token_lazy
  359. import foobar
  360. class FooBar(BaseEngine):
  361. # Name of the subdirectory containing the templates for this engine
  362. # inside an installed application.
  363. app_dirname = 'foobar'
  364. def __init__(self, params):
  365. params = params.copy()
  366. options = params.pop('OPTIONS').copy()
  367. super(FooBar, self).__init__(params)
  368. self.engine = foobar.Engine(**options)
  369. def from_string(self, template_code):
  370. try:
  371. return Template(self.engine.from_string(template_code))
  372. except foobar.TemplateCompilationFailed as exc:
  373. raise TemplateSyntaxError(exc.args)
  374. def get_template(self, template_name):
  375. try:
  376. return Template(self.engine.get_template(template_name))
  377. except foobar.TemplateNotFound as exc:
  378. raise TemplateDoesNotExist(exc.args, backend=self)
  379. except foobar.TemplateCompilationFailed as exc:
  380. raise TemplateSyntaxError(exc.args)
  381. class Template(object):
  382. def __init__(self, template):
  383. self.template = template
  384. def render(self, context=None, request=None):
  385. if context is None:
  386. context = {}
  387. if request is not None:
  388. context['request'] = request
  389. context['csrf_input'] = csrf_input_lazy(request)
  390. context['csrf_token'] = csrf_token_lazy(request)
  391. return self.template.render(context)
  392. See `DEP 182`_ for more information.
  393. .. _template-debug-integration:
  394. Debug integration for custom engines
  395. ------------------------------------
  396. .. versionadded:: 1.9
  397. Debug page integration for non-Django template engines was added.
  398. The Django debug page has hooks to provide detailed information when a template
  399. error arises. Custom template engines can use these hooks to enhance the
  400. traceback information that appears to users. The following hooks are available:
  401. .. _template-postmortem:
  402. Template postmortem
  403. ~~~~~~~~~~~~~~~~~~~
  404. The postmortem appears when :exc:`~django.template.TemplateDoesNotExist` is
  405. raised. It lists the template engines and loaders that were used when trying
  406. to find a given template. For example, if two Django engines are configured,
  407. the postmortem will appear like:
  408. .. image:: _images/postmortem.png
  409. Custom engines can populate the postmortem by passing the ``backend`` and
  410. ``tried`` arguments when raising :exc:`~django.template.TemplateDoesNotExist`.
  411. Backends that use the postmortem :ref:`should specify an origin
  412. <template-origin-api>` on the template object.
  413. Contextual line information
  414. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  415. If an error happens during template parsing or rendering, Django can display
  416. the line the error happened on. For example:
  417. .. image:: _images/template-lines.png
  418. Custom engines can populate this information by setting a ``template_debug``
  419. attribute on exceptions raised during parsing and rendering. This attribute
  420. is a :class:`dict` with the following values:
  421. * ``'name'``: The name of the template in which the exception occurred.
  422. * ``'message'``: The exception message.
  423. * ``'source_lines'``: The lines before, after, and including the line the
  424. exception occurred on. This is for context, so it shouldn't contain more than
  425. 20 lines or so.
  426. * ``'line'``: The line number on which the exception occurred.
  427. * ``'before'``: The content on the error line before the token that raised the
  428. error.
  429. * ``'during'``: The token that raised the error.
  430. * ``'after'``: The content on the error line after the token that raised the
  431. error.
  432. * ``'total'``: The number of lines in ``source_lines``.
  433. * ``'top'``: The line number where ``source_lines`` starts.
  434. * ``'bottom'``: The line number where ``source_lines`` ends.
  435. Given the above template error, ``template_debug`` would look like::
  436. {
  437. 'name': '/path/to/template.html',
  438. 'message': "Invalid block tag: 'syntax'",
  439. 'source_lines': [
  440. (1, 'some\n'),
  441. (2, 'lines\n'),
  442. (3, 'before\n'),
  443. (4, 'Hello {% syntax error %} {{ world }}\n'),
  444. (5, 'some\n'),
  445. (6, 'lines\n'),
  446. (7, 'after\n'),
  447. (8, ''),
  448. ],
  449. 'line': 4,
  450. 'before': 'Hello ',
  451. 'during': '{% syntax error %}',
  452. 'after': ' {{ world }}\n',
  453. 'total': 9,
  454. 'bottom': 9,
  455. 'top': 1,
  456. }
  457. .. _template-origin-api:
  458. Origin API and 3rd-party integration
  459. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  460. Django templates have an :class:`~django.template.base.Origin` object available
  461. through the ``template.origin`` attribute. This enables debug information to be
  462. displayed in the :ref:`template postmortem <template-postmortem>`, as well as
  463. in 3rd-party libraries, like the `Django Debug Toolbar`_.
  464. Custom engines can provide their own ``template.origin`` information by
  465. creating an object that specifies the following attributes:
  466. * ``'name'``: The full path to the template.
  467. * ``'template_name'``: The relative path to the template as passed into the
  468. the template loading methods.
  469. * ``'loader_name'``: An optional string identifying the function or class used
  470. to load the template, e.g. ``django.template.loaders.filesystem.Loader``.
  471. .. currentmodule:: django.template
  472. .. _template-language-intro:
  473. The Django template language
  474. ============================
  475. .. highlightlang:: html+django
  476. Syntax
  477. ------
  478. .. admonition:: About this section
  479. This is an overview of the Django template language's syntax. For details
  480. see the :doc:`language syntax reference </ref/templates/language>`.
  481. A Django template is simply a text document or a Python string marked-up using
  482. the Django template language. Some constructs are recognized and interpreted
  483. by the template engine. The main ones are variables and tags.
  484. A template is rendered with a context. Rendering replaces variables with their
  485. values, which are looked up in the context, and executes tags. Everything else
  486. is output as is.
  487. The syntax of the Django template language involves four constructs.
  488. Variables
  489. ~~~~~~~~~
  490. A variable outputs a value from the context, which is a dict-like object
  491. mapping keys to values.
  492. Variables are surrounded by ``{{`` and ``}}`` like this::
  493. My first name is {{ first_name }}. My last name is {{ last_name }}.
  494. With a context of ``{'first_name': 'John', 'last_name': 'Doe'}``, this
  495. template renders to::
  496. My first name is John. My last name is Doe.
  497. Dictionary lookup, attribute lookup and list-index lookups are implemented
  498. with a dot notation::
  499. {{ my_dict.key }}
  500. {{ my_object.attribute }}
  501. {{ my_list.0 }}
  502. If a variable resolves to a callable, the template system will call it with no
  503. arguments and use its result instead of the callable.
  504. Tags
  505. ~~~~
  506. Tags provide arbitrary logic in the rendering process.
  507. This definition is deliberately vague. For example, a tag can output content,
  508. serve as a control structure e.g. an "if" statement or a "for" loop, grab
  509. content from a database, or even enable access to other template tags.
  510. Tags are surrounded by ``{%`` and ``%}`` like this::
  511. {% csrf_token %}
  512. Most tags accept arguments::
  513. {% cycle 'odd' 'even' %}
  514. Some tags require beginning and ending tags::
  515. {% if user.is_authenticated %}Hello, {{ user.username }}.{% endif %}
  516. A :ref:`reference of built-in tags <ref-templates-builtins-tags>` is
  517. available as well as :ref:`instructions for writing custom tags
  518. <howto-writing-custom-template-tags>`.
  519. Filters
  520. ~~~~~~~
  521. Filters transform the values of variables and tag arguments.
  522. They look like this::
  523. {{ django|title }}
  524. With a context of ``{'django': 'the web framework for perfectionists with
  525. deadlines'}``, this template renders to::
  526. The Web Framework For Perfectionists With Deadlines
  527. Some filters take an argument::
  528. {{ my_date|date:"Y-m-d" }}
  529. A :ref:`reference of built-in filters <ref-templates-builtins-filters>` is
  530. available as well as :ref:`instructions for writing custom filters
  531. <howto-writing-custom-template-filters>`.
  532. Comments
  533. ~~~~~~~~
  534. Comments look like this::
  535. {# this won't be rendered #}
  536. A :ttag:`{% comment %} <comment>` tag provides multi-line comments.
  537. Components
  538. ----------
  539. .. admonition:: About this section
  540. This is an overview of the Django template language's APIs. For details
  541. see the :doc:`API reference </ref/templates/api>`.
  542. Engine
  543. ~~~~~~
  544. :class:`django.template.Engine` encapsulates an instance of the Django
  545. template system. The main reason for instantiating an
  546. :class:`~django.template.Engine` directly is to use the Django template
  547. language outside of a Django project.
  548. :class:`django.template.backends.django.DjangoTemplates` is a thin wrapper
  549. adapting :class:`django.template.Engine` to Django's template backend API.
  550. Template
  551. ~~~~~~~~
  552. :class:`django.template.Template` represents a compiled template.
  553. Templates are obtained with :meth:`Engine.get_template()
  554. <django.template.Engine.get_template>` or :meth:`Engine.from_string()
  555. <django.template.Engine.from_string>`
  556. Likewise ``django.template.backends.django.Template`` is a thin wrapper
  557. adapting :class:`django.template.Template` to the common template API.
  558. Context
  559. ~~~~~~~
  560. :class:`django.template.Context` holds some metadata in addition to the
  561. context data. It is passed to :meth:`Template.render()
  562. <django.template.Template.render>` for rendering a template.
  563. :class:`django.template.RequestContext` is a subclass of
  564. :class:`~django.template.Context` that stores the current
  565. :class:`~django.http.HttpRequest` and runs template context processors.
  566. The common API doesn't have an equivalent concept. Context data is passed in a
  567. plain :class:`dict` and the current :class:`~django.http.HttpRequest` is passed
  568. separately if needed.
  569. Loaders
  570. ~~~~~~~
  571. Template loaders are responsible for locating templates, loading them, and
  572. returning :class:`~django.template.Template` objects.
  573. Django provides several :ref:`built-in template loaders <template-loaders>`
  574. and supports :ref:`custom template loaders <custom-template-loaders>`.
  575. Context processors
  576. ~~~~~~~~~~~~~~~~~~
  577. Context processors are functions that receive the current
  578. :class:`~django.http.HttpRequest` as an argument and return a :class:`dict` of
  579. data to be added to the rendering context.
  580. Their main use is to add common data shared by all templates to the context
  581. without repeating code in every view.
  582. Django provides many :ref:`built-in context processors <context-processors>`.
  583. Implementing a custom context processor is as simple as defining a function.
  584. .. _Jinja2: http://jinja.pocoo.org/
  585. .. _DEP 182: https://github.com/django/deps/blob/master/accepted/0182-multiple-template-engines.rst
  586. .. _Django Debug Toolbar: https://github.com/django-debug-toolbar/django-debug-toolbar