Odoo 10 - Qweb 测试记录是否在记录集中

Odoo 10 - Qweb test if record is in a record set

我有 a=sale.order.line(5,)b=sale.order.line(4,3,5,6,)

如果 ab 中,我如何在 QWeb 中进行测试?

<t t-if="a in b">
    <!-- do something -->
</t>