Tower: upload cetmix_tower_server 16.0.2.2.9 (via marketplace)
This commit is contained in:
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<!-- pylint:disable=duplicate-xml-fields -->
|
||||||
|
<odoo>
|
||||||
|
<record id="view_cx_tower_server_host_key_wizard_form" model="ir.ui.view">
|
||||||
|
<field name="name">cx.tower.server.host.key.wizard.form</field>
|
||||||
|
<field name="model">cx.tower.server.host.key.wizard</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<form string="Host Key">
|
||||||
|
<field name="is_error" invisible="1" />
|
||||||
|
<div
|
||||||
|
class="alert alert-warning"
|
||||||
|
role="status"
|
||||||
|
attrs="{'invisible': [('is_error', '=', True)]}"
|
||||||
|
>
|
||||||
|
Check the key before inserting in the server settings. Do not insert the key if you have any doubts!
|
||||||
|
</div>
|
||||||
|
<field
|
||||||
|
name="host_key"
|
||||||
|
readonly="1"
|
||||||
|
attrs="{'invisible': [('is_error', '=', True)]}"
|
||||||
|
/>
|
||||||
|
<field
|
||||||
|
name="host_key"
|
||||||
|
readonly="1"
|
||||||
|
attrs="{'invisible': [('is_error', '=', False)]}"
|
||||||
|
class="alert alert-danger"
|
||||||
|
role="status"
|
||||||
|
/>
|
||||||
|
<footer>
|
||||||
|
<button
|
||||||
|
name="action_insert_host_key"
|
||||||
|
type="object"
|
||||||
|
string="Insert Key"
|
||||||
|
class="btn-primary"
|
||||||
|
attrs="{'invisible': [('is_error', '=', True)]}"
|
||||||
|
confirm="I confirm that the key is correct and I want to insert it in the server settings"
|
||||||
|
/>
|
||||||
|
<button special="cancel" string="Close" class="btn-secondary" />
|
||||||
|
</footer>
|
||||||
|
</form>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
Reference in New Issue
Block a user