odoo18/addons_extensions/menu_control_center/views/login.xml

17 lines
612 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<template id="login_master_inherit" inherit_id="web.login">
<xpath expr="//form" position="inside">
<div class="form-group mt-2">
<label>Select Module</label>
<select name="master_select" class="form-control">
<t t-foreach="masters" t-as="m">
<option t-att-value="m.code">
<t t-esc="m.name"/>
</option>
</t>
</select>
</div>
</xpath>
</template>
</odoo>