Manual
1. Kolejność atrybutów
Ważny jest fakt, iż kolejność atrybutów nie jest istotna.
Na przykład,
<span tal:define="usersList application/listUsers"
tal:condition="somecondition"
tal:repeat="user usersList"
>...</span>
Jest DOKŁADNIE tym samym co :
<span tal:repeat="user usersList"
tal:condition="somecondition"
tal:define="usersList application/listUsers"
>...</span>
Priorytet jest taki sam jak opisany w specyfikacji TAL :
- define
- condition
- repeat
- content or replace
- attributes
- omit-tag



