KTextTemplate

KTextTemplate for theme artists

The syntax of KTextTemplate templates is the same as Django templates. This page is an introduction to the syntax, but any Django template introduction is also relevant. Here's some good ones:

Syntax of KTextTemplate templates

The syntax of KTextTemplate templates contains four types of tokens - plain text, comments, variables and control tags.

A simple template might look like this:

  {# My simple Template #}

  Hello {{ person.name }},

  {% if person.hasBirthday %}
  Happy Birthday!
  {% else %}
  Have a nice day!
  {% endif %}

  Bye,

  {{ myname }}
  • Content inside {# #} are comments and are not part of the output.
  • Content inside {{ }} are variables which are substitued when the template is rendered.
  • Content inside {% %} are control tags which can affect the rendering of the template. KTextTemplate ships with commonly used tags such as {% if %}, {% for %}, {% cycle %} and a host of others (see http://docs.djangoproject.com/en/dev/ref/templates/builtins/). It is also possible for application developers and artists to define their own tags.

Loops

The type of a variable determines how it can be used in templates. For example, treatment of items in an iterable context works as follows.

Lists work as expected:

  <h2>A few of my favourite things</h2>
  <ul>
  {% for item in mylist %}
  <li>{{ item }}</li>
  {% endfor %}
  </ul>

If an int or double is used in a loop, it is treated as a list containing one item. That is, this

  {% for item in myint %}
  <li>{{ item }}</li>
  {% endfor %}

would be rendered as

  <li>6</li>

if myint is 6 in the context.

Truthiness

Truthiness of a variable is evaulated in a similar way to python. That is,

  • The invalid QVariant is false
  • An empty QString is false
  • 0 is false
  • An empty container such as QVariantList or QVariantHash is false
  • Boolean false is false
  • QObjects that define their own truth behaviour and return false are false

Everything else is true.

  {% if mylist %}
  <ul>
  {% for item in mylist %}
  <li>{{ item }}</li>
  {% endfor %}
  </ul>
  {% endif %}

Variable lookups

So far we've mostly used simple variable lookups in {{ variable }} tags, but the template system is capable of a lot more. Complex structures can be evaluated using the dot ('.') character.

The dot can be used for list index lookup (Note that list lookup is 0-indexed):

  The first item is {{ mylist.0 }}, and the fifth item is {{ mylist.4 }}.

It can also be used for QVariantHash key lookup:

  The hash value is {{ myhash.mykey }}.

And it can retrieve properties from QObject instances:

  The object property is {{ myobj.myprop }}.

Filters

Filters can further affect the result of including a variable in a template. Filters are separated by the pipe ('|') character.

  Name is {{ name }}, and name in uppercase is {{ name|upper }}.

  // rendered as
  // Name is Alice, and name in uppercase is ALICE.

Note that filters may be combined with dot-lookup. For example, if people is a list of Person objects, and Person objects have name properties:

  First persons name: {{ people.0.name|upper }}.

  // rendered as
  // First persons name: BOB.

Filters may also be chained. Here, 'Claire' is first uppercased, then lowercased:

  Name is {{ name|upper|lower }}

  // rendered as
  // First persons name: claire.

Filters may take one string argument, which is delimited by a colon (':').

If peoplestring contains "Dave and Ellen and Frank", we can cut the string 'and '

  The people are {{ peoplestring|cut:"and " }}

  // rendered as
  // The people are Dave Ellen Frank.

KTextTemplate ships with many useful filters including upper, lower, slice, truncate, join, split etc (see http://docs.djangoproject.com/en/dev/ref/templates/builtins/). Application developers and artists can also define their own filters.

Template Inclusion and Inheritance

It is possible for templates to include other templates in two ways, by directly including the content of another template, and by extending another template.

template_including

The {% include %} tag is used to include the content of another template.

  <h1>My page</h1>
    {% include "breadcrumbs.html" %}

  <h2>My Data</h2>
    {% include "table.html" %}

If "breadcrumbs.html" and "table.html" exist and contain appropriate content, they will be rendered and added to the output of the template.

template_extending

The {% extends %} tag is used to include and override the content of another template.

The template being extended must define several blocks using the {% block %} tag. Typically, one or more base templates will be defined which define the structure and content of all templates, and some placeholders for other templates to fill in.

For example, a base.html might look like this:

  <html>
    <head>
      <title>{% block title %}My Stuff{% endblock %}</title>
    </head>
    <body>
      <div class="sidebar">
        {% block sidebar %}
        {% endblock sidebar %}
      </div>
      <div class="main_content">
        {% block content %}
        {% endblock content %}
      </div>
    </body>
  </html>

Then other templates could be written which extend this template, reusing its content and replacing the content of the {% block %} tags.

For example, a page about books:

  {% extends "base.html" %}
  {% block title %}{{ block.super }} - My Books{% endblock %}

  {% block content %}
  <ul>
    {% for book in books %}
      <li>{{ book.name }}, {{ book.author }}
    {% endfor %}
  </ul>
  {% endblock %}

Or a page about DVDs:

  {% extends "base.html" %}
  {% block title %}{{ block.super }} - My DVDs{% endblock %}

  {% block content %}
  <ul>
    {% for dvd in dvds %}
      <li>{{ dvd.title }}, {{ dvd.director }}
    {% endfor %}
  </ul>
  {% endblock content %}

Note that it is optional to override a {% block %} in a extended template. It is also optional to repeat the name of the block in its corresponding {% endblock %} tag.

The content of an overriden tag is available in the {{ block.super }} variable, and can be reused where appropriate. In the above examples, the use of {{ block.super }} results in the titles of the rendered pages being "My Stuff - My Books", and "My Stuff - My DVDs" respectively.

Autoescaping in templates.

When creating HTML string output it is necessary to consider escaping data inserted into the template. HTML escaping involves replacing '<' with '&lt;' and '&' with '&amp;' etc. KTextTemplate automatically escapes string input before adding it to the output.

This is relevant when writing a variable from the context into the Template.

If the context object companies is a list containing ('Burger King', 'Ben & Jerries', 'Ford'), and it is used in a template such as:

  <ul>
  {% for company in companies %}
    <li>{{ company }}</li>
  {% endfor %}
  </ul>

The output would be

  <ul>
    <li>Burger King</li>
    <li>Ben &amp; Jerries</li>
    <li>Ford</li>
  </ul>

Notice that the '&' has been replaced with '&amp;', as is appropriate for html output.

Sometimes however, a variable will contain text which has already been escaped and does not need to be escaped again. For example, if we already created a table in the context containing the content:

  <table class="myclass">
    <tr><th> Company </th><th> Product </th></tr>
    <tr><td> Burger King </td><td> Fast Food </td></tr>
    <tr><td> Ben &amp; Jerries </td><td> Icecream </td></tr>
    <tr><td> Ford </td><td> Cars </td></tr>
  </table>

and a template with the content:

  <h2> Table of companies </h2>

  {{ table }}

  As you can see in the table...

the content would not be rendered properly because it would be escaped.

  <h2> Table of companies </h2>

  &lt;table class=&quot;myclass&quot;&gt;
    &lt;tr&gt;&lt;th&gt; Company &lt;/th&gt;&lt;th&gt; Product &lt;/th&gt;&lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt; Burger King &lt;/td&gt;&lt;td&gt; Fast Food &lt;/td&gt;&lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt; Ben &amp;amp; Jerries &lt;/td&gt;&lt;td&gt; Icecream &lt;/td&gt;&lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt; Ford &lt;/td&gt;&lt;td&gt; Cars &lt;/td&gt;&lt;/tr&gt;
  &lt;/table&gt;

  As you can see in the table...

Note that the content of table has already been escaped. That is 'Ben &amp; Jerries' is already used instead of 'Ben & Jerries'. If a variable has already been escaped and should not be escaped again, it can be marked as safe from further escaping using the safe filter.

  <h2> Table of companies </h2>

  {{ table|safe }}

  As you can see in the table...

Resulting in:

  <h2> Table of companies </h2>

  <table class="myclass">
    <tr><th> Company </th><th> Product </th></tr>
    <tr><td> Burger King </td><td> Fast Food </td></tr>
    <tr><td> Ben &amp; Jerries </td><td> Icecream </td></tr>
    <tr><td> Ford </td><td> Cars </td></tr>
  </table>

  As you can see in the table...

It is also possible to turn this autoescaping feature off for a block in a template.

For example:

  <h2> Some pre-prepared safe data </h2>

  {% autoescape off %}
    {{ table }}
    As you can see in the table...

    {% for list in lists %}
      {{ list }}
    {% endfor %}

    {{ paragraph_data }}
  {% endautoescape %}

would not escape the content between the autoescape and endautoescape tags. This should only be used for content which is actually already safe.

See also
https://docs.djangoproject.com/en/1.9/ref/templates/language/#for-individual-variables

Extending the syntax

It is also possible to extend the syntax of KTextTemplate as you need it using Javascript if the application developer chooses. See Javascript Libraries for more. This is considered an advanced topic.

This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:42 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.