有没有办法根据Qweb中的用户组控制视图?
我尝试更改聊天中“新消息”按钮的可见性。只有在用户处于调试模式时才能看到该按钮。
<templates>
<t t-extend="mail.Chatter">
<t t-jquery="button[class='btn btn-sm btn-primary o_chatter_button_new_message']" t-operation="replace">
<button type="button" groups="base.group_no_one" class="btn btn-sm btn-primary o_chatter_button_new_message"
title="Send a message">
New message
</button>
</t>
</t>
属性groups="base.group_no_one"
不起作用。我也试过t-if
条件但没有成功。