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.
21 lines
900 B
21 lines
900 B
<?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">
|
|
<tree string="arch" create="false">
|
|
<field name="comments_id" column_invisible="1"/>
|
|
<field name="linkedin_comments" />
|
|
</tree>
|
|
</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">tree</field>
|
|
</record>
|
|
</odoo>
|
|
|