Index: bigtable.py
===================================================================
--- bigtable.py	(revision 164)
+++ bigtable.py	(working copy)
@@ -18,6 +18,8 @@
 import neo_cs
 import neo_util
 
+from django.template import Template as DjangoTemplate, Context as DjangoContext
+
 table = [dict(a=1,b=2,c=3,d=4,e=5,f=6,g=7,h=8,i=9,j=10)
           for x in range(1000)]
 
@@ -45,7 +47,19 @@
 <html xmlns:py="http://purl.org/kid/ns#">$table</html>
 """)
 
+django_tmpl = DjangoTemplate("""
+<table>
+{% for row in table %}
+<tr>{% for col in row.values %}{{ col }}{% endfor %}</tr>
+{% endfor %}
+</table>
+""")
 
+def test_django():
+    """Djange template"""
+    context = DjangoContext({'table': table})
+    django_tmpl.render(context)
+
 def test_markup():
     """Markup template"""
     ctxt = Context(table=table)
@@ -125,7 +139,8 @@
 
 def run(which=None, number=10):
     tests = ['test_builder', 'test_markup', 'test_markup_builder', 'test_kid',
-             'test_kid_et', 'test_et', 'test_cet', 'test_clearsilver']
+             'test_kid_et', 'test_et', 'test_cet', 'test_clearsilver',
+             'test_django']
     if which:
         tests = filter(lambda n: n[5:] in which, tests)
 
