Earlier quoted context omitted.
Interesting, I'll take a look at this some more. My only question is, isn't plain old Lua already like django's templates. What specifically are you adding that embedded lua doesn't just give you?
Template inheritance. See http://docs.djangoproject.com/en/dev/topics/templates/#id1 `Template inheritance¶ The most powerful -- and thus the most complex -- part of Django's template engine 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.` Having made it in lua myself,…
I'll take a look at the code and see what I can come up with.