Hello,
do you think if it's possible with custom helper to make this : like "continue" in a loop as php
or maybe somethink like filter
Thanks
do you think if it's possible with custom helper to make this : like "continue" in a loop as php
PHP Code:
<!-- {{#each cares}} -->
// requirement like php "continue" in a loop
if !{{fieldInCare}} continue
// end requirement
<tr>
<td width="10%">{{dateTime}}</td>
<td width="60%">{{contactName}}</td>
<td width="10%">{{nomenCode}}</td>
</tr>
<!-- {{/each}} -->
PHP Code:
<!-- {{#each cares filter='fieldInCare' 'true' }} -->
Comment