27 Sep
2005
27 Sep
'05
4:04 p.m.
On 27 Sep 2005, at 17:02, Matthew White wrote:
Hello,
I've got this following bit of ZPT:
<tal:loop repeat="t container.py.get_queue(whence=q, userid=userid))">
<span tal:replace="structure here/queue_template"> Queue Template Goes Here </span>
you're using a python notation without declaring it as such. Try... <tal:loop repeat="t python: container.py.get_queue(whence=q, userid=userid)"> jens