view examples/bench/django/templates/template.html @ 526:8779b2a775d9 trunk

Fix interpolation of short-form expressions that include literal text before the expression. Thanks to Alec for reporting the issue.
author cmlenz
date Mon, 18 Jun 2007 21:00:39 +0000
parents e29a94b3ba0c
children
line wrap: on
line source
{% extends "base.html" %}
{% load bench %}

{% block content %}
  <head>
    <title>{{title|escape}}</title>
  </head>

  <body>
    {% block header %}{% endblock %}

    <div>{% greeting user %}</div>
    <div>{% greeting "me" %}</div>
    <div>{% greeting "world" %}</div>

    <h2>Loop</h2>
    {% if items %}
      <ul>
        {% for item in items %}
          <li{% if forloop.last %} class="last"{% endif %}>{{ item|escape }}</li>
        {% endfor %}
      </ul>
    {% endif %}

    {% block footer %}{% endblock %}
  </body>
{% endblock %}
Copyright (C) 2012-2017 Edgewall Software