Is there an alternative to what I do below :
...
<div class="abc" tal:condition="this/condition1">
<div class="abc2" tal:condition="this/condition2">
...
</div>
</div>
...
Such as :
...
<div class="abc" tal:condition="this/condition1 AND this/condition2">
...
</div>
...