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.
 
 
 
 
 

119 lines
6.7 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="instagram_profile_settings_form" model="ir.ui.view">
<field name="name">insta.profile.form</field>
<field name="model">insta.profile</field>
<field name="arch" type="xml">
<form>
<sheet>
<div class="oe_button_box" name="button_box">
<button name="action_fetch" string="Fetch Account" type="object" class="oe_stat_button"
icon="fa-instagram"/>
<button name="action_get_post" string="Fetch Posts" type="object" class="oe_stat_button"
attrs="{'invisible': [('username', '=', False)]}"
icon="fa-save"/>
</div>
<field name="profile_image_url" widget="image" class="oe_avatar"/>
<div class="oe_title mb24">
<h1>
<field name="name" widget="text"/>
</h1>
</div>
<div class="row o_website_sale_image_modal">
<div class="col-md-6 col-xl-5">
<group>
<field name="access_token" password="True" style="width:600px;word-break: break-all;"/>
<field name="username"/>
<field name="account_id"/>
</group>
</div>
</div>
</sheet>
</form>
</field>
</record>
<record id="instagram_profile_settings_list" model="ir.ui.view">
<field name="name">insta.profile.form</field>
<field name="model">insta.profile</field>
<field name="arch" type="xml">
<tree>
<field name="name"/>
<field name="username"/>
</tree>
</field>
</record>
<!-- <record id="instagram_profile_settings_kanban" model="ir.ui.view">-->
<!-- <field name="name">insta.profile.kanban</field>-->
<!-- <field name="model">insta.profile</field>-->
<!-- <field name="arch" type="xml">-->
<!-- <kanban class="o_kanban_mobile">-->
<!-- <field name="name"/>-->
<!-- <field name="username"/>-->
<!-- <field name="profile_image_url"/>-->
<!-- <field name="website"/>-->
<!-- <templates>-->
<!-- <t t-name="kanban-box">-->
<!-- <div t-attf-class="oe_kanban_card oe_kanban_global_click o_kanban_record_has_image_fill o_hr_kanban_record">-->
<!-- <field name="profile_image_url" widget="image" class="o_kanban_image_fill_left"-->
<!-- options="{'zoom': true, 'zoom_delay': 1000, 'background': true, 'preventClicks': false}"/>-->
<!-- <div class="oe_kanban_details ml8">-->
<!-- <div class="o_kanban_record_top">-->
<!-- <div class="o_kanban_record_top_left">-->
<!-- <div class="o_kanban_record_headings">-->
<!-- <strong class="o_kanban_record_title">-->
<!-- <div>-->
<!-- <strong>-->
<!-- <field name="username" widget="label_selection"/>-->
<!-- </strong>-->
<!-- </div>-->
<!-- </strong>-->
<!-- <span class="o_kanban_record_subtitle">-->
<!-- <strong>-->
<!-- <field name="name"/>-->
<!-- <br/>-->
<!-- <field name="website" widget="url"/>-->
<!-- </strong>-->
<!-- </span>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="o_kanban_record_bottom mt-3">-->
<!-- <div class="oe_kanban_bottom_left">-->
<!-- <div class="o_project_kanban_boxes">-->
<!-- <div>-->
<!-- <strong>-->
<!-- <span class="o_value">Followers</span>-->
<!-- <span class="o_label">-->
<!-- <field name="followers_count"/>-->
<!-- </span>-->
<!-- </strong>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="oe_kanban_bottom_right">-->
<!-- <div class="o_project_kanban_boxes">-->
<!-- <div>-->
<!-- <strong>-->
<!-- <span class="o_value">Follows</span>-->
<!-- <span class="o_label">-->
<!-- <field name="follows_count"/>-->
<!-- </span>-->
<!-- </strong>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </t>-->
<!-- </templates>-->
<!-- </kanban>-->
<!--</field>-->
<!-- </record>-->
</odoo>