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.
 
 
 
 
 

24 lines
1.1 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!--Wizard form for upload file to ownCloud storage-->
<record id="owncloud_upload_view_form" model="ir.ui.view">
<field name="name">owncloud.upload.view.form</field>
<field name="model">owncloud.upload</field>
<field name="arch" type="xml">
<form string="upload file wizard">
<group class="oe_title">
<field name="file" string="File Name" filename="file_name" widget="binary"/>
<field name="file_name" invisible="1"/>
</group>
<footer>
<button string="Upload" name="action_owncloud_upload_file"
type="object"
class="oe_highlight" data-hotkey="q"
help="Confirm Upload"/>
<button string="Cancel" class="btn btn-secondary"
special="cancel" help="Cancel Upload"/>
</footer>
</form>
</field>
</record>
</odoo>