OS : Linux
PHP Version : 7.4.33
Software : Apache/2.4.6 (CentOS) PHP/7.4.33
Information System : Linux apprendre2 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Disable Function :
This document describes the syntax and semantics of the template engine and
will be most useful as reference to those creating Jinja templates. As the
template engine is very flexible the configuration from the application might
be slightly different from here in terms of delimiters and behavior of
undefined values. A template is simply a text file. It can generate any text-based format
(HTML, XML, CSV, LaTeX, etc.). It doesn’t have a specific extension,
.html or .xml are just fine. A template contains variables or expressions, which get replaced with
values when the template is evaluated, and tags, which control the logic of
the template. The template syntax is heavily inspired by Django and Python. Below is a minimal template that illustrates a few basics. We will cover
the details later in that document: This covers the default settings. The application developer might have
changed the syntax from {% foo %} to <% foo %> or something similar. There are two kinds of delimiters. {% ... %} and {{ ... }}. The first
one is used to execute statements such as for-loops or assign values, the
latter prints the result of the expression to the template. The application passes variables to the templates you can mess around in the
template. Variables may have attributes or elements on them you can access
too. How a variable looks like, heavily depends on the application providing
those. You can use a dot (.) to access attributes of a variable, alternative the
so-called “subscript” syntax ([]) can be used. The following lines do
the same: It’s important to know that the curly braces are not part of the variable
but the print statement. If you access variables inside tags don’t put the
braces around. If a variable or attribute does not exist you will get back an undefined
value. What you can do with that kind of value depends on the application
configuration, the default behavior is that it evaluates to an empty string
if printed and that you can iterate over it, but every other operation fails. Implementation For convenience sake foo.bar in Jinja2 does the following things on
the Python layer: foo['bar'] on the other hand works mostly the same with the a small
difference in the order: This is important if an object has an item or attribute with the same
name. Additionally there is the attr() filter that just looks up
attributes. Variables can be modified by filters. Filters are separated from the
variable by a pipe symbol (|) and may have optional arguments in
parentheses. Multiple filters can be chained. The output of one filter is
applied to the next. {{ name|striptags|title }} for example will remove all HTML Tags from the
name and title-cases it. Filters that accept arguments have parentheses
around the arguments, like a function call. This example will join a list
by commas: {{ list|join(', ') }}. The List of Builtin Filters below describes all the builtin filters. Beside filters there are also so called “tests” available. Tests can be used
to test a variable against a common expression. To test a variable or
expression you add is plus the name of the test after the variable. For
example to find out if a variable is defined you can do name is defined
which will then return true or false depending on if name is defined. Tests can accept arguments too. If the test only takes one argument you can
leave out the parentheses to group them. For example the following two
expressions do the same: The List of Builtin Tests below describes all the builtin tests. To comment-out part of a line in a template, use the comment syntax which is
by default set to {# ... #}. This is useful to comment out parts of the
template for debugging or to add information for other template designers or
yourself: In the default configuration, a single trailing newline is stripped if
present, and whitespace is not further modified by the template engine. Each
whitespace (spaces, tabs, newlines etc.) is returned unchanged. If the
application configures Jinja to trim_blocks the first newline after a
template tag is removed automatically (like in PHP). The lstrip_blocks
option can also be set to strip tabs and spaces from the beginning of
line to the start of a block. (Nothing will be stripped if there are
other characters before the start of the block.) With both trim_blocks and lstrip_blocks enabled you can put block tags
on their own lines, and the entire block line will be removed when
rendered, preserving the whitespace of the contents. For example,
without the trim_blocks and lstrip_blocks options, this template: gets rendered with blank lines inside the div: But with both trim_blocks and lstrip_blocks enabled, the lines with the
template blocks are removed while preserving the whitespace of the contents: You can manually disable the lstrip_blocks behavior by putting a
plus sign (+) at the start of a block: You can also strip whitespace in templates by hand. If you put an minus
sign (-) to the start or end of an block (for example a for tag), a
comment or variable expression you can remove the whitespaces after or before
that block: This will yield all elements without whitespace between them. If seq was
a list of numbers from 1 to 9 the output would be 123456789. If Line Statements are enabled they strip leading whitespace
automatically up to the beginning of the line. Jinja2 by default also removes trailing newlines. To keep the single
trailing newline when it is present, configure Jinja to
keep_trailing_newline. Note You must not use a whitespace between the tag and the minus sign. valid: invalid: It is sometimes desirable or even necessary to have Jinja ignore parts it
would otherwise handle as variables or blocks. For example if the default
syntax is used and you want to use {{ as raw string in the template and
not start a variable you have to use a trick. The easiest way is to output the variable delimiter ({{) by using a
variable expression: For bigger sections it makes sense to mark a block raw. For example to
put Jinja syntax as example into a template you can use this snippet: If line statements are enabled by the application it’s possible to mark a
line as a statement. For example if the line statement prefix is configured
to # the following two examples are equivalent: The line statement prefix can appear anywhere on the line as long as no text
precedes it. For better readability statements that start a block (such as
for, if, elif etc.) may end with a colon: Note Line statements can span multiple lines if there are open parentheses,
braces or brackets: Since Jinja 2.2 line-based comments are available as well. For example if
the line-comment prefix is configured to be ## everything from ## to
the end of the line is ignored (excluding the newline sign): The most powerful part of Jinja is template inheritance. Template inheritance
allows you to build a base “skeleton” template that contains all the common
elements of your site and defines blocks that child templates can override. Sounds complicated but is very basic. It’s easiest to understand it by starting
with an example. This template, which we’ll call base.html, defines a simple HTML skeleton
document that you might use for a simple two-column page. It’s the job of
“child” templates to fill the empty blocks with content: In this example, the {% block %} tags define four blocks that child templates
can fill in. All the block tag does is to tell the template engine that a
child template may override those portions of the template. A child template might look like this: The {% extends %} tag is the key here. It tells the template engine that
this template “extends” another template. When the template system evaluates
this template, first it locates the parent. The extends tag should be the
first tag in the template. Everything before it is printed out normally and
may cause confusion. For details about this behavior and how to take
advantage of it, see Null-Master Fallback. The filename of the template depends on the template loader. For example the
FileSystemLoader allows you to access other templates by giving the
filename. You can access templates in subdirectories with a slash: But this behavior can depend on the application embedding Jinja. Note that
since the child template doesn’t define the footer block, the value from
the parent template is used instead. You can’t define multiple {% block %} tags with the same name in the
same template. This limitation exists because a block tag works in “both”
directions. That is, a block tag doesn’t just provide a hole to fill - it
also defines the content that fills the hole in the parent. If there
were two similarly-named {% block %} tags in a template, that template’s
parent wouldn’t know which one of the blocks’ content to use. If you want to print a block multiple times you can however use the special
self variable and call the block with that name: It’s possible to render the contents of the parent block by calling super.
This gives back the results of the parent block: Jinja2 allows you to put the name of the block after the end tag for better
readability: However the name after the endblock word must match the block name. Blocks can be nested for more complex layouts. However per default blocks
may not access variables from outer scopes: This example would output empty <li> items because item is unavailable
inside the block. The reason for this is that if the block is replaced by
a child template a variable would appear that was not defined in the block or
passed to the context. Starting with Jinja 2.2 you can explicitly specify that variables are
available in a block by setting the block to “scoped” by adding the scoped
modifier to a block declaration: When overriding a block the scoped modifier does not have to be provided.
Changed in version 2.4. If a template object was passed to the template context you can
extend from that object as well. Assuming the calling code passes
a layout template as layout_template to the environment, this
code works: Previously the layout_template variable had to be a string with
the layout template’s filename for this to work. When generating HTML from templates, there’s always a risk that a variable will
include characters that affect the resulting HTML. There are two approaches:
manually escaping each variable or automatically escaping everything by default. Jinja supports both, but what is used depends on the application configuration.
The default configuaration is no automatic escaping for various reasons: If manual escaping is enabled it’s your responsibility to escape
variables if needed. What to escape? If you have a variable that may
include any of the following chars (>, <, &, or ") you
have to escape it unless the variable contains well-formed and trusted
HTML. Escaping works by piping the variable through the |e filter:
{{ user.username|e }}. When automatic escaping is enabled everything is escaped by default except
for values explicitly marked as safe. Those can either be marked by the
application or in the template by using the |safe filter. The main
problem with this approach is that Python itself doesn’t have the concept
of tainted values so the information if a value is safe or unsafe can get
lost. If the information is lost escaping will take place which means that
you could end up with double escaped contents. Double escaping is easy to avoid however, just rely on the tools Jinja2
provides and don’t use builtin Python constructs such as the string modulo
operator. Functions returning template data (macros, super, self.BLOCKNAME) return
safe markup always. String literals in templates with automatic escaping are considered unsafe
too. The reason for this is that the safe string is an extension to Python
and not every library will work properly with it. A control structure refers to all those things that control the flow of a
program - conditionals (i.e. if/elif/else), for-loops, as well as things like
macros and blocks. Control structures appear inside {% ... %} blocks
in the default syntax. Loop over each item in a sequence. For example, to display a list of users
provided in a variable called users: As variables in templates retain their object properties, it is possible to
iterate over containers like dict: Note however that dictionaries usually are unordered so you might want to
either pass it as a sorted list to the template or use the dictsort
filter. Inside of a for-loop block you can access some special variables: Within a for-loop, it’s possible to cycle among a list of strings/variables
each time through the loop by using the special loop.cycle helper: Since Jinja 2.1 an extra cycle helper exists that allows loop-unbound
cycling. For more information have a look at the List of Global Functions. Unlike in Python it’s not possible to break or continue in a loop. You
can however filter the sequence during iteration which allows you to skip
items. The following example skips all the users which are hidden: The advantage is that the special loop variable will count correctly thus
not counting the users not iterated over. If no iteration took place because the sequence was empty or the filtering
removed all the items from the sequence you can render a replacement block
by using else: Note that in Python else blocks are executed whenever the corresponding
loop did not break. Since in Jinja loops cannot break anyway,
a slightly different behavior of the else keyword was chosen. It is also possible to use loops recursively. This is useful if you are
dealing with recursive data such as sitemaps. To use loops recursively you
basically have to add the recursive modifier to the loop definition and
call the loop variable with the new iterable where you want to recurse. The following example implements a sitemap with recursive loops: The loop variable always refers to the closest (innermost) loop. If we
have more than one levels of loops, we can rebind the variable loop by
writing {% set outer_loop = loop %} after the loop that we want to
use recursively. Then, we can call it using {{ outer_loop(...) }} The if statement in Jinja is comparable with the if statements of Python.
In the simplest form you can use it to test if a variable is defined, not
empty or not false: For multiple branches elif and else can be used like in Python. You can
use more complex Expressions there too: If can also be used as inline expression and for
loop filtering. Macros are comparable with functions in regular programming languages. They
are useful to put often used idioms into reusable functions to not repeat
yourself. Here a small example of a macro that renders a form element: The macro can then be called like a function in the namespace: If the macro was defined in a different template you have to
import it first. Inside macros you have access to three special variables: Macros also expose some of their internal details. The following attributes
are available on a macro object: If a macro name starts with an underscore it’s not exported and can’t
be imported. In some cases it can be useful to pass a macro to another macro. For this
purpose you can use the special call block. The following example shows
a macro that takes advantage of the call functionality and how it can be
used: It’s also possible to pass arguments back to the call block. This makes it
useful as replacement for loops. Generally speaking a call block works
exactly like an macro, just that it doesn’t have a name. Here an example of how a call block can be used with arguments: Filter sections allow you to apply regular Jinja2 filters on a block of
template data. Just wrap the code in the special filter section: Inside code blocks you can also assign values to variables. Assignments at
top level (outside of blocks, macros or loops) are exported from the template
like top level macros and can be imported by other templates. Assignments use the set tag and can have multiple targets: The extends tag can be used to extend a template from another one. You
can have multiple of them in a file but only one of them may be executed
at the time. See the section about Template Inheritance above. Blocks are used for inheritance and act as placeholders and replacements
at the same time. They are documented in detail as part of the section
about Template Inheritance. The include statement is useful to include a template and return the
rendered contents of that file into the current namespace: Included templates have access to the variables of the active context by
default. For more details about context behavior of imports and includes
see Import Context Behavior. From Jinja 2.2 onwards you can mark an include with ignore missing in
which case Jinja will ignore the statement if the template to be included
does not exist. When combined with with or without context it has
to be placed before the context visibility statement. Here some valid
examples:
New in version 2.2. You can also provide a list of templates that are checked for existence
before inclusion. The first template that exists will be included. If
ignore missing is given, it will fall back to rendering nothing if
none of the templates exist, otherwise it will raise an exception. Example:
Changed in version 2.4: If a template object was passed to the template context you can
include that object using include. Jinja2 supports putting often used code into macros. These macros can go into
different templates and get imported from there. This works similar to the
import statements in Python. It’s important to know that imports are cached
and imported templates don’t have access to the current template variables,
just the globals by default. For more details about context behavior of
imports and includes see Import Context Behavior. There are two ways to import templates. You can import the complete template
into a variable or request specific macros / exported variables from it. Imagine we have a helper module that renders forms (called forms.html): The easiest and most flexible is importing the whole module into a variable.
That way you can access the attributes: Alternatively you can import names from the template into the current
namespace: Macros and variables starting with one or more underscores are private and
cannot be imported.
Changed in version 2.4: If a template object was passed to the template context you can
import from that object. Per default included templates are passed the current context and imported
templates not. The reason for this is that imports unlike includes are
cached as imports are often used just as a module that holds macros. This however can be changed of course explicitly. By adding with context
or without context to the import/include directive the current context
can be passed to the template and caching is disabled automatically. Here two examples: Note In Jinja 2.0 the context that was passed to the included template
did not include variables defined in the template. As a matter of
fact this did not work: The included template render_box.html is not able to access
box in Jinja 2.0. As of Jinja 2.1 render_box.html is able
to do so. Jinja allows basic expressions everywhere. These work very similar to regular
Python and even if you’re not working with Python you should feel comfortable
with it. The simplest form of expressions are literals. Literals are representations
for Python objects such as strings and numbers. The following literals exist: Everything between two brackets is a list. Lists are useful to store
sequential data in or to iterate over them. For example you can easily
create a list of links using lists and tuples with a for loop: Note The special constants true, false and none are indeed lowercase.
Because that caused confusion in the past, when writing True expands
to an undefined variable that is considered false, all three of them can
be written in title case too (True, False, and None). However for
consistency (all Jinja identifiers are lowercase) you should use the
lowercase versions. Jinja allows you to calculate with values. This is rarely useful in templates
but exists for completeness’ sake. The following operators are supported: For if statements, for filtering or if expressions it can be useful to
combine multiple expressions: Note The is and in operators support negation using an infix notation
too: foo is not bar and foo not in bar instead of not foo is bar
and not foo in bar. All other expressions require a prefix notation:
not (foo and bar). The following operators are very useful but don’t fit into any of the other
two categories: It is also possible to use inline if expressions. These are useful in some
situations. For example you can use this to extend from one template if a
variable is defined, otherwise from the default layout template: The general syntax is <do something> if <something is true> else <do
something else>. The else part is optional. If not provided the else block implicitly
evaluates into an undefined object: Return the absolute value of the argument. Get an attribute of an object. foo|attr("bar") works like
foo["bar"] just that always an attribute is returned and items are not
looked up. See Notes on subscriptions for more details. A filter that batches items. It works pretty much like slice
just the other way round. It returns a list of lists with the
given number of items. If you provide a second parameter this
is used to fill up missing items. See this example: Capitalize a value. The first character will be uppercase, all others
lowercase. Centers the value in a field of a given width. If the value is undefined it will return the passed default value,
otherwise the value of the variable: This will output the value of my_variable if the variable was
defined, otherwise 'my_variable is not defined'. If you want
to use default with variables that evaluate to false you have to
set the second parameter to true: Sort a dict and yield (key, value) pairs. Because python dicts are
unsorted you may want to use this function to order them by either
key or value: Convert the characters &, <, >, ‘, and ” in string s to HTML-safe
sequences. Use this if you need to display text that might contain
such characters in HTML. Marks return value as markup string. Format the value like a ‘human-readable’ file size (i.e. 13 kB,
4.1 MB, 102 Bytes, etc). Per default decimal prefixes are used (Mega,
Giga, etc.), if the second parameter is set to True the binary
prefixes are used (Mebi, Gibi). Return the first item of a sequence. Convert the value into a floating point number. If the
conversion doesn’t work it will return 0.0. You can
override this default using the first parameter. Enforce HTML escaping. This will probably double escape variables. Apply python string formatting on an object: Group a sequence of objects by a common attribute. If you for example have a list of dicts or objects that represent persons
with gender, first_name and last_name attributes and you want to
group all users by genders you can do something like the following
snippet: Additionally it’s possible to use tuple unpacking for the grouper and
list: As you can see the item we’re grouping by is stored in the grouper
attribute and the list contains all the objects that have this grouper
in common.
Changed in version 2.6: It’s now possible to use dotted notation to group by the child
attribute of another attribute. Return a copy of the passed string, each line indented by
4 spaces. The first line is not indented. If you want to
change the number of spaces or indent the first line too
you can pass additional parameters to the filter: Convert the value into an integer. If the
conversion doesn’t work it will return 0. You can
override this default using the first parameter. Return a string which is the concatenation of the strings in the
sequence. The separator between elements is an empty string per
default, you can define it with the optional parameter: It is also possible to join certain attributes of an object:
New in version 2.6: The attribute parameter was added. Return the last item of a sequence. Return the number of items of a sequence or mapping. Convert the value into a list. If it was a string the returned list
will be a list of characters. Convert a value to lowercase. Applies a filter on a sequence of objects or looks up an attribute.
This is useful when dealing with lists of objects but you are really
only interested in a certain value of it. The basic usage is mapping on an attribute. Imagine you have a list
of users but you are only interested in a list of usernames: Alternatively you can let it invoke a filter by passing the name of the
filter and the arguments afterwards. A good example would be applying a
text conversion filter on a sequence:
New in version 2.7. Pretty print a variable. Useful for debugging. With Jinja 1.2 onwards you can pass it a parameter. If this parameter
is truthy the output will be more verbose (this requires pretty) Return a random item from the sequence. Filters a sequence of objects by appying a test to either the object
or the attribute and rejecting the ones with the test succeeding. Example usage:
New in version 2.7. Filters a sequence of objects by appying a test to either the object
or the attribute and rejecting the ones with the test succeeding.
New in version 2.7. Return a copy of the value with all occurrences of a substring
replaced with a new one. The first argument is the substring
that should be replaced, the second is the replacement string.
If the optional third argument count is given, only the first
count occurrences are replaced: Reverse the object or return an iterator the iterates over it the other
way round. Round the number to a given precision. The first
parameter specifies the precision (default is 0), the
second the rounding method: If you don’t specify a method 'common' is used. Note that even if rounded to 0 precision, a float is returned. If
you need a real integer, pipe it through int: Mark the value as safe which means that in an environment with automatic
escaping enabled this variable will not be escaped. Filters a sequence of objects by appying a test to either the object
or the attribute and only selecting the ones with the test succeeding. Example usage:
New in version 2.7. Filters a sequence of objects by appying a test to either the object
or the attribute and only selecting the ones with the test succeeding. Example usage:
New in version 2.7. Slice an iterator and return a list of lists containing
those items. Useful if you want to create a div containing
three ul tags that represent columns: If you pass it a second argument it’s used to fill missing
values on the last iteration. Sort an iterable. Per default it sorts ascending, if you pass it
true as first argument it will reverse the sorting. If the iterable is made of strings the third parameter can be used to
control the case sensitiveness of the comparison which is disabled by
default. It is also possible to sort by an attribute (for example to sort
by the date of an object) by specifying the attribute parameter:
Changed in version 2.6: The attribute parameter was added. Make a string unicode if it isn’t already. That way a markup
string is not converted back to unicode. Strip SGML/XML tags and replace adjacent whitespace by one space. Returns the sum of a sequence of numbers plus the value of parameter
‘start’ (which defaults to 0). When the sequence is empty it returns
start. It is also possible to sum up only certain attributes:
Changed in version 2.6: The attribute parameter was added to allow suming up over
attributes. Also the start parameter was moved on to the right. Return a titlecased version of the value. I.e. words will start with
uppercase letters, all remaining characters are lowercase. Strip leading and trailing whitespace. Return a truncated copy of the string. The length is specified
with the first parameter which defaults to 255. If the second
parameter is true the filter will cut the text at length. Otherwise
it will discard the last word. If the text was in fact
truncated it will append an ellipsis sign ("..."). If you want a
different ellipsis sign than "..." you can specify it using the
third parameter. Convert a value to uppercase. Escape strings for use in URLs (uses UTF-8 encoding). It accepts both
dictionaries and regular strings as well as pairwise iterables.
New in version 2.7. Converts URLs in plain text into clickable links. If you pass the filter an additional integer it will shorten the urls
to that number. Also a third argument exists that makes the urls
“nofollow”: Count the words in that string. Return a copy of the string passed to the filter wrapped after
79 characters. You can override this default using the first
parameter. If you set the second parameter to false Jinja will not
split words apart if they are longer than width. By default, the newlines
will be the default newlines for the environment, but this can be changed
using the wrapstring keyword argument.
New in version 2.7: Added support for the wrapstring parameter. Create an SGML/XML attribute string based on the items in a dict.
All values that are neither none nor undefined are automatically
escaped: Results in something like this: As you can see it automatically prepends a space in front of the item
if the filter returned something unless the second parameter is false. Return whether the object is callable (i.e., some kind of function).
Note that classes are callable, as are instances with a __call__() method. Return true if the variable is defined: See the default() filter for a simple way to set undefined
variables. Check if a variable is divisible by a number. Check if the value is escaped. Return true if the variable is even. Check if it’s possible to iterate over an object. Return true if the variable is lowercased. Return true if the object is a mapping (dict etc.).
New in version 2.6. Return true if the variable is none. Return true if the variable is a number. Return true if the variable is odd. Check if an object points to the same memory address than another
object: Return true if the variable is a sequence. Sequences are variables
that are iterable. Return true if the object is a string. Return true if the variable is uppercased. The following functions are available in the global scope by default: Return a list containing an arithmetic progression of integers.
range(i, j) returns [i, i+1, i+2, ..., j-1]; start (!) defaults to 0.
When step is given, it specifies the increment (or decrement).
For example, range(4) returns [0, 1, 2, 3]. The end point is omitted!
These are exactly the valid indices for a list of 4 elements. This is useful to repeat a template block multiple times for example
to fill a list. Imagine you have 7 users in the list but you want to
render three empty items to enforce a height with CSS: Generates some lorem ipsum for the template. Per default five paragraphs
with HTML are generated each paragraph between 20 and 100 words. If html
is disabled regular text is returned. This is useful to generate simple
contents for layout testing. A convenient alternative to dict literals. {'foo': 'bar'} is the same
as dict(foo='bar'). The cycler allows you to cycle among values similar to how loop.cycle
works. Unlike loop.cycle however you can use this cycler outside of
loops or over multiple loops. This is for example very useful if you want to show a list of folders and
files, with the folders on top, but both in the same list with alternating
row colors. The following example shows how cycler can be used: A cycler has the following attributes and methods: Resets the cycle to the first item. Goes one item a head and returns the then current item. Returns the current item. new in Jinja 2.1 A tiny helper that can be use to “join” multiple sections. A joiner is
passed a string and will return that string every time it’s called, except
the first time in which situation it returns an empty string. You can
use this to join things: new in Jinja 2.1 The following sections cover the built-in Jinja2 extensions that may be
enabled by the application. The application could also provide further
extensions not covered by this documentation. In that case there should
be a separate document explaining the extensions. If the i18n extension is enabled it’s possible to mark parts in the template
as translatable. To mark a section as translatable you can use trans: To translate a template expression — say, using template filters or just
accessing an attribute of an object — you need to bind the expression to a
name for use within the translation block: If you need to bind more than one expression inside a trans tag, separate
the pieces with a comma (,): Inside trans tags no statements are allowed, only variable tags are. To pluralize, specify both the singular and plural forms with the pluralize
tag, which appears between trans and endtrans: Per default the first variable in a block is used to determine the correct
singular or plural form. If that doesn’t work out you can specify the name
which should be used for pluralizing by adding it as parameter to pluralize: It’s also possible to translate strings in expressions. For that purpose
three functions exist: _ gettext: translate a single string
- ngettext: translate a pluralizable string
- _: alias for gettext For example you can print a translated string easily this way: To use placeholders you can use the format filter: For multiple placeholders always use keyword arguments to format as other
languages may not use the words in the same order.
Changed in version 2.5. If newstyle gettext calls are activated (Newstyle Gettext), using
placeholders is a lot easier: Note that the ngettext function’s format string automatically receives
the count as num parameter additionally to the regular parameters. If the expression-statement extension is loaded a tag called do is available
that works exactly like the regular variable expression ({{ ... }}) just
that it doesn’t print anything. This can be used to modify lists: If the application enables the Loop Controls it’s possible to
use break and continue in loops. When break is reached, the loop is
terminated; if continue is reached, the processing is stopped and continues
with the next iteration. Here a loop that skips every second item: Likewise a look that stops processing after the 10th iteration:
New in version 2.3. If the application enables the With Statement it is possible to
use the with keyword in templates. This makes it possible to create
a new inner scope. Variables set within this scope are not visible
outside of the scope. With in a nutshell: Because it is common to set variables at the beginning of the scope
you can do that within the with statement. The following two examples
are equivalent:
New in version 2.4. If the application enables the Autoescape Extension one can
activate and deactivate the autoescaping from within the templates. Example: After the endautoescape the behavior is reverted to what it was before.Template Designer Documentation¶
Synopsis¶
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<title>My Webpage</title>
</head>
<body>
<ul id="navigation">
{% for item in navigation %}
<li><a href="{{ item.href }}">{{ item.caption }}</a></li>
{% endfor %}
</ul>
<h1>My Webpage</h1>
{{ a_variable }}
</body>
</html>
Variables¶
{{ foo.bar }}
{{ foo['bar'] }}
Filters¶
Tests¶
{% if loop.index is divisibleby 3 %}
{% if loop.index is divisibleby(3) %}
Comments¶
{# note: disabled template because we no longer use this
{% for user in users %}
...
{% endfor %}
#}
Whitespace Control¶
<div>
{% if True %}
yay
{% endif %}
</div>
<div>
yay
</div>
<div>
yay
</div>
<div>
{%+ if something %}yay{% endif %}
</div>
{% for item in seq -%}
{{ item }}
{%- endfor %}
{%- if foo -%}...{% endif %}
{% - if foo - %}...{% endif %}
Escaping¶
{{ '{{' }}
{% raw %}
<ul>
{% for item in seq %}
<li>{{ item }}</li>
{% endfor %}
</ul>
{% endraw %}
Line Statements¶
<ul>
# for item in seq
<li>{{ item }}</li>
# endfor
</ul>
<ul>
{% for item in seq %}
<li>{{ item }}</li>
{% endfor %}
</ul>
# for item in seq:
...
# endfor
<ul>
# for href, caption in [('index.html', 'Index'),
('about.html', 'About')]:
<li><a href="{{ href }}">{{ caption }}</a></li>
# endfor
</ul>
# for item in seq:
<li>{{ item }}</li> ## this comment is ignored
# endfor
Template Inheritance¶
Base Template¶
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
{% block head %}
<link rel="stylesheet" href="style.css" />
<title>{% block title %}{% endblock %} - My Webpage</title>
{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
© Copyright 2008 by <a href="http://domain.invalid/">you</a>.
{% endblock %}
</div>
</body>
Child Template¶
{% extends "base.html" %}
{% block title %}Index{% endblock %}
{% block head %}
{{ super() }}
<style type="text/css">
.important { color: #336699; }
</style>
{% endblock %}
{% block content %}
<h1>Index</h1>
<p class="important">
Welcome on my awesome homepage.
</p>
{% endblock %}
{% extends "layout/default.html" %}
<title>{% block title %}{% endblock %}</title>
<h1>{{ self.title() }}</h1>
{% block body %}{% endblock %}
Super Blocks¶
{% block sidebar %}
<h3>Table Of Contents</h3>
...
{{ super() }}
{% endblock %}
Named Block End-Tags¶
{% block sidebar %}
{% block inner_sidebar %}
...
{% endblock inner_sidebar %}
{% endblock sidebar %}
Block Nesting and Scope¶
{% for item in seq %}
<li>{% block loop_item %}{{ item }}{% endblock %}</li>
{% endfor %}
{% for item in seq %}
<li>{% block loop_item scoped %}{{ item }}{% endblock %}</li>
{% endfor %}
Template Objects¶
{% extends layout_template %}
HTML Escaping¶
Working with Manual Escaping¶
Working with Automatic Escaping¶
List of Control Structures¶
For¶
<h1>Members</h1>
<ul>
{% for user in users %}
<li>{{ user.username|e }}</li>
{% endfor %}
</ul>
<dl>
{% for key, value in my_dict.iteritems() %}
<dt>{{ key|e }}</dt>
<dd>{{ value|e }}</dd>
{% endfor %}
</dl>
Variable
Description
loop.index
The current iteration of the loop. (1 indexed)
loop.index0
The current iteration of the loop. (0 indexed)
loop.revindex
The number of iterations from the end of the loop
(1 indexed)
loop.revindex0
The number of iterations from the end of the loop
(0 indexed)
loop.first
True if first iteration.
loop.last
True if last iteration.
loop.length
The number of items in the sequence.
loop.cycle
A helper function to cycle between a list of
sequences. See the explanation below.
loop.depth
Indicates how deep in deep in a recursive loop
the rendering currently is. Starts at level 1
`loop.depth0
Indicates how deep in deep in a recursive loop
the rendering currently is. Starts at level 0
{% for row in rows %}
<li class="{{ loop.cycle('odd', 'even') }}">{{ row }}</li>
{% endfor %}
{% for user in users if not user.hidden %}
<li>{{ user.username|e }}</li>
{% endfor %}
<ul>
{% for user in users %}
<li>{{ user.username|e }}</li>
{% else %}
<li><em>no users found</em></li>
{% endfor %}
</ul>
<ul class="sitemap">
{%- for item in sitemap recursive %}
<li><a href="{{ item.href|e }}">{{ item.title }}</a>
{%- if item.children -%}
<ul class="submenu">{{ loop(item.children) }}</ul>
{%- endif %}</li>
{%- endfor %}
</ul>
If¶
{% if users %}
<ul>
{% for user in users %}
<li>{{ user.username|e }}</li>
{% endfor %}
</ul>
{% endif %}
{% if kenny.sick %}
Kenny is sick.
{% elif kenny.dead %}
You killed Kenny! You bastard!!!
{% else %}
Kenny looks okay --- so far
{% endif %}
Macros¶
{% macro input(name, value='', type='text', size=20) -%}
<input type="{{ type }}" name="{{ name }}" value="{{
value|e }}" size="{{ size }}">
{%- endmacro %}
<p>{{ input('username') }}</p>
<p>{{ input('password', type='password') }}</p>
Call¶
{% macro render_dialog(title, class='dialog') -%}
<div class="{{ class }}">
<h2>{{ title }}</h2>
<div class="contents">
{{ caller() }}
</div>
</div>
{%- endmacro %}
{% call render_dialog('Hello World') %}
This is a simple dialog rendered by using a macro and
a call block.
{% endcall %}
{% macro dump_users(users) -%}
<ul>
{%- for user in users %}
<li><p>{{ user.username|e }}</p>{{ caller(user) }}</li>
{%- endfor %}
</ul>
{%- endmacro %}
{% call(user) dump_users(list_of_user) %}
<dl>
<dl>Realname</dl>
<dd>{{ user.realname|e }}</dd>
<dl>Description</dl>
<dd>{{ user.description }}</dd>
</dl>
{% endcall %}
Filters¶
{% filter upper %}
This text becomes uppercase
{% endfilter %}
Assignments¶
{% set navigation = [('index.html', 'Index'), ('about.html', 'About')] %}
{% set key, value = call_something() %}
Extends¶
Block¶
Include¶
{% include 'header.html' %}
Body
{% include 'footer.html' %}
{% include "sidebar.html" ignore missing %}
{% include "sidebar.html" ignore missing with context %}
{% include "sidebar.html" ignore missing without context %}
{% include ['page_detailed.html', 'page.html'] %}
{% include ['special_sidebar.html', 'sidebar.html'] ignore missing %}
Import¶
{% macro input(name, value='', type='text') -%}
<input type="{{ type }}" value="{{ value|e }}" name="{{ name }}">
{%- endmacro %}
{%- macro textarea(name, value='', rows=10, cols=40) -%}
<textarea name="{{ name }}" rows="{{ rows }}" cols="{{ cols
}}">{{ value|e }}</textarea>
{%- endmacro %}
{% import 'forms.html' as forms %}
<dl>
<dt>Username</dt>
<dd>{{ forms.input('username') }}</dd>
<dt>Password</dt>
<dd>{{ forms.input('password', type='password') }}</dd>
</dl>
<p>{{ forms.textarea('comment') }}</p>
{% from 'forms.html' import input as input_field, textarea %}
<dl>
<dt>Username</dt>
<dd>{{ input_field('username') }}</dd>
<dt>Password</dt>
<dd>{{ input_field('password', type='password') }}</dd>
</dl>
<p>{{ textarea('comment') }}</p>
Import Context Behavior¶
{% from 'forms.html' import input with context %}
{% include 'header.html' without context %}
{% for box in boxes %}
{% include "render_box.html" %}
{% endfor %}
Expressions¶
Literals¶
<ul>
{% for href, caption in [('index.html', 'Index'), ('about.html', 'About'),
('downloads.html', 'Downloads')] %}
<li><a href="{{ href }}">{{ caption }}</a></li>
{% endfor %}
</ul>
Math¶
Comparisons¶
Logic¶
Other Operators¶
If Expression¶
{% extends layout_template if layout_template is defined else 'master.html' %}
{{ '[%s]' % page.title if page.title }}
List of Builtin Filters¶
<table>
{%- for row in items|batch(3, ' ') %}
<tr>
{%- for column in row %}
<td>{{ column }}</td>
{%- endfor %}
</tr>
{%- endfor %}
</table>
{{ my_variable|default('my_variable is not defined') }}
{{ ''|default('the string was empty', true) }}
Aliases : d
{% for item in mydict|dictsort %}
sort the dict by key, case insensitive
{% for item in mydict|dictsort(true) %}
sort the dict by key, case sensitive
{% for item in mydict|dictsort(false, 'value') %}
sort the dict by key, case insensitive, sorted
normally and ordered by value.
Aliases : e
{{ "%s - %s"|format("Hello?", "Foo!") }}
-> Hello? - Foo!
<ul>
{% for group in persons|groupby('gender') %}
<li>{{ group.grouper }}<ul>
{% for person in group.list %}
<li>{{ person.first_name }} {{ person.last_name }}</li>
{% endfor %}</ul></li>
{% endfor %}
</ul>
<ul>
{% for grouper, list in persons|groupby('gender') %}
...
{% endfor %}
</ul>
{{ mytext|indent(2, true) }}
indent by two spaces and indent the first line too.
{{ [1, 2, 3]|join('|') }}
-> 1|2|3
{{ [1, 2, 3]|join }}
-> 123
{{ users|join(', ', attribute='username') }}
Aliases : count
Users on this page: {{ users|map(attribute='username')|join(', ') }}
Users on this page: {{ titles|map('lower')|join(', ') }}
{{ numbers|reject("odd") }}
{{ users|rejectattr("is_active") }}
{{ users|rejectattr("email", "none") }}
{{ "Hello World"|replace("Hello", "Goodbye") }}
-> Goodbye World
{{ "aaaaargh"|replace("a", "d'oh, ", 2) }}
-> d'oh, d'oh, aaargh
{{ 42.55|round }}
-> 43.0
{{ 42.55|round(1, 'floor') }}
-> 42.5
{{ 42.55|round|int }}
-> 43
{{ numbers|select("odd") }}
{{ users|selectattr("is_active") }}
{{ users|selectattr("email", "none") }}
<div class="columwrapper">
{%- for column in items|slice(3) %}
<ul class="column-{{ loop.index }}">
{%- for item in column %}
<li>{{ item }}</li>
{%- endfor %}
</ul>
{%- endfor %}
</div>
{% for item in iterable|sort %}
...
{% endfor %}
{% for item in iterable|sort(attribute='date') %}
...
{% endfor %}
Total: {{ items|sum(attribute='price') }}
{{ "foo bar"|truncate(5) }}
-> "foo ..."
{{ "foo bar"|truncate(5, True) }}
-> "foo b..."
{{ mytext|urlize(40, true) }}
links are shortened to 40 chars and defined with rel="nofollow"
<ul{{ {'class': 'my_list', 'missing': none,
'id': 'list-%d'|format(variable)}|xmlattr }}>
...
</ul>
<ul class="my_list" id="list-42">
...
</ul>
List of Builtin Tests¶
{% if variable is defined %}
value of variable: {{ variable }}
{% else %}
variable is not defined
{% endif %}
{% if foo.attribute is sameas false %}
the foo attribute really is the `False` singleton
{% endif %}
List of Global Functions¶
<ul>
{% for user in users %}
<li>{{ user.username }}</li>
{% endfor %}
{% for number in range(10 - users|count) %}
<li class="empty"><span>...</span></li>
{% endfor %}
</ul>
{% set row_class = cycler('odd', 'even') %}
<ul class="browser">
{% for folder in folders %}
<li class="folder {{ row_class.next() }}">{{ folder|e }}</li>
{% endfor %}
{% for filename in files %}
<li class="file {{ row_class.next() }}">{{ filename|e }}</li>
{% endfor %}
</ul>
{% set pipe = joiner("|") %}
{% if categories %} {{ pipe() }}
Categories: {{ categories|join(", ") }}
{% endif %}
{% if author %} {{ pipe() }}
Author: {{ author() }}
{% endif %}
{% if can_edit %} {{ pipe() }}
<a href="?action=edit">Edit</a>
{% endif %}
Extensions¶
i18n¶
<p>{% trans %}Hello {{ user }}!{% endtrans %}</p>
<p>{% trans user=user.username %}Hello {{ user }}!{% endtrans %}</p>
{% trans book_title=book.title, author=author.name %}
This is {{ book_title }} by {{ author }}
{% endtrans %}
{% trans count=list|length %}
There is {{ count }} {{ name }} object.
{% pluralize %}
There are {{ count }} {{ name }} objects.
{% endtrans %}
{% trans ..., user_count=users|length %}...
{% pluralize user_count %}...{% endtrans %}
{{ _('Hello World!') }}
{{ _('Hello %(user)s!')|format(user=user.username) }}
{{ gettext('Hello World!') }}
{{ gettext('Hello %(name)s!', name='World') }}
{{ ngettext('%(num)d apple', '%(num)d apples', apples|count) }}
Expression Statement¶
{% do navigation.append('a string') %}
Loop Controls¶
{% for user in users %}
{%- if loop.index is even %}{% continue %}{% endif %}
...
{% endfor %}
{% for user in users %}
{%- if loop.index >= 10 %}{% break %}{% endif %}
{%- endfor %}
With Statement¶
{% with %}
{% set foo = 42 %}
{{ foo }} foo is 42 here
{% endwith %}
foo is not visible here any longer
{% with foo = 42 %}
{{ foo }}
{% endwith %}
{% with %}
{% set foo = 42 %}
{{ foo }}
{% endwith %}
Autoescape Extension¶
{% autoescape true %}
Autoescaping is active within this block
{% endautoescape %}
{% autoescape false %}
Autoescaping is inactive within this block
{% endautoescape %}