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.
 
 
 
 
 

27 lines
1.1 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Upload file wizard view -->
<record id="dropbox_upload_view_form" model="ir.ui.view">
<field name="name">dropbox.upload.view.form</field>
<field name="model">dropbox.upload</field>
<field name="arch" type="xml">
<form string="upload file wizard">
<!-- Group for file selection -->
<group class="oe_title">
<field name="file" filename="file_name"/>
<field name="file_name" invisible="1"/>
</group>
<footer>
<!-- Upload button -->
<button string="Upload" name="action_upload_file"
type="object"
class="oe_highlight" data-hotkey="q"
help="Confirm Upload"/>
<!-- Cancel button -->
<button string="Cancel" class="btn btn-secondary"
special="cancel" help="Cancel Upload"/>
</footer>
</form>
</field>
</record>
</odoo>