22 lines
900 B
XML
22 lines
900 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- A view in Odoo for displaying comments related to LinkedIn posts.
|
|
It includes two fields: comments_id (invisible) and linkedin_comments.-->
|
|
<record id="linkedin_comments_view_tree" model="ir.ui.view">
|
|
<field name="name">linkedin.comments.view.tree</field>
|
|
<field name="model">linkedin.comments</field>
|
|
<field name="arch" type="xml">
|
|
<list string="arch" create="false">
|
|
<field name="comments_id" column_invisible="1"/>
|
|
<field name="linkedin_comments" />
|
|
</list>
|
|
</field>
|
|
</record>
|
|
<!--Action-->
|
|
<record id="hr_recruitment_comments" model="ir.actions.act_window">
|
|
<field name="name">Post Comments</field>
|
|
<field name="res_model">linkedin.comments</field>
|
|
<field name="view_mode">list</field>
|
|
</record>
|
|
</odoo>
|