Table of Contents
This section describes TAL and its extensions. It mainly targets template designers but must be read by PHP integrators as well.
It is important to note that the order of declaration of attributes is irrelevant.
For example,
<span tal:define="usersList application/listUsers"
tal:condition="somecondition"
tal:repeat="user usersList"
>...</span>
Is EXACTLY the same as:
<span tal:repeat="user usersList"
tal:condition="somecondition"
tal:define="usersList application/listUsers"
>...</span>
Priority is the same as described by TAL specifications:
define
condition
repeat
content or replace
attributes
omit-tag