aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-01-04 19:07:50 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-01-04 19:07:50 +0000
commit8c75479f0cfc2e5ee9bd5f16aa59c17a442b0137 (patch)
treea4fe0f4c9c3930d5530b885f1002994badaa6921 /examples
parentdfe3387523cbb09ecc08b3c28a13acbc8ac1fb39 (diff)
downloadexternal_python_mako-8c75479f0cfc2e5ee9bd5f16aa59c17a442b0137.tar.gz
external_python_mako-8c75479f0cfc2e5ee9bd5f16aa59c17a442b0137.tar.bz2
external_python_mako-8c75479f0cfc2e5ee9bd5f16aa59c17a442b0137.zip
removed escaping, extra condfitional
Diffstat (limited to 'examples')
-rw-r--r--examples/bench/django/templates/template.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bench/django/templates/template.html b/examples/bench/django/templates/template.html
index 1ab56cc..44363f8 100644
--- a/examples/bench/django/templates/template.html
+++ b/examples/bench/django/templates/template.html
@@ -14,7 +14,7 @@
{% if items %}
<ul>
{% for item in items %}
- <li{% if forloop.islast %} class="last"{% endif %}>{{ item|escape }}</li>
+ <li>{{ item }}</li>
{% endfor %}
</ul>
{% endif %}