You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.6 KiB
35 lines
1.6 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inherited res config settings model-->
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">
|
|
res.config.settings.view.form.inherit.website.signup.approval
|
|
</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="website.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//setting[@id='website_login_documents']"
|
|
position="after">
|
|
<div class="col-12 col-lg-6 o_setting_box"
|
|
id="signup_approval"
|
|
invisible="auth_signup_uninvited == 'b2b'">
|
|
<div class="o_setting_left_pane">
|
|
<field name="auth_signup_uninvited" invisible="1"/>
|
|
<field name="auth_signup_approval"/>
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="auth_signup_approval" readonly="false"/>
|
|
<div class="text-muted">
|
|
Attachment Data
|
|
</div>
|
|
<div class="content-group mt16"
|
|
invisible="auth_signup_approval == False">
|
|
<field name="documents_ids"
|
|
widget="many2many_tags" required="auth_signup_approval == True"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|