我想写 if condition with or conditions :
[% IF bug.product == 'CustomerCare' or bug.product =='Alerts' or bug.product =='Chatlog' %]
<tr><td colspan="2"> <h3 align="center">Have you verified the Checklist ?</h3></td></tr>
<tr>
<td>
<input type="checkbox" id="chck1" name="greet" value="1" [% FOREACH gre = chk_greet%] checked [% END%] />
</td>
<td>
<label for = "chck1"> Greet the customer ?</label>
</td>
</tr>
<tr>
<td> <input type="checkbox" id="chck2" name="issue_status" value="1" [% FOREACH iss = chk_issustat%] checked [% END%] />
</td>
<td> <label for = "chck2">Issue under concern and its status (whether resolved or not)</label> </td>
</tr>
<tr>
<td>
<input type="checkbox" id="chck3" name="done_fix" value="1" [% FOREACH don = chk_done%] checked [% END%] [% END %]/>
</td>
</tr>
写这个条件的正确格式是什么?