是否有办法让特定用户组看到导出/导入
答案 0 :(得分:0)
这对我有用。 希望你从我的答案中得到你的结果。
<html>
<template id="export_hide_web" inherit_id="web.assets_backend">
<xpath expr="//link[@href='/web/static/src/css/data_export.css']" position="replace">
<link rel="stylesheet" href="/web/static/src/css/data_export.css" groups="Your admin groupe" />
</xpath>
<xpath expr="//script[@src='/web/static/src/js/data_export.js']" position="replace">
<script type="text/javascript" src="/web/static/src/js/data_export.js" groups="Your admin group"></script>
</xpath>
</template>
</html>