I would like to manage the tags available on the forums, but don't seem to find a screen to do this.
Can someone help me with this?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I would like to manage the tags available on the forums, but don't seem to find a screen to do this.
Can someone help me with this?
The forum.tag views are not currently available. You must first create them yourself and add a menu to manage them.
UPDATE:
<record model="ir.ui.view" id="view_forum_tag_form">
<field name="name">view_forum_tag_form</field>
<field name="model">forum.tag</field>
<field name="arch" type="xml">
<form>
<group string="Forum Tags">
<field name="name"/>
<field name="forum_id"/>
<field name="posts_count"/>
<field name="create_uid"/>
<field name="post_ids" widget="many2many"/>
</group>
</form>
</field>
</record>
<record model="ir.ui.view" id="view_forum_tag_tree">
<field name="name">view_forum_tag_tree</field>
<field name="model">forum.tag</field>
<field name="arch" type="xml">
<tree string="Forum Tags">
<field name="name"/>
<field name="forum_id"/>
<field name="posts_count"/>
<field name="create_uid"/>
<!--field name="post_ids"/-->
</tree>
</field>
</record>
<record model="ir.actions.act_window" id="action_forum_tag">
<field name="name">Forum Tags</field>
<field name="res_model">forum.tag</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem
name="Forum Tags"
parent="website_forum.menu_website_forum"
sequence="20"
action="action_forum_tag"
id="menu_forum_tag"/>
Thanks for the answer, You wouldn't by chance have a the views already prepared ;-)
Unfortunately, I do not have :(
Answer updated, example xml
Thanks a lot. Ciao
PS. See issue: https://github.com/odoo/odoo/issues/7427
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
Jan 21
|
2231 | ||
|
0
Jan 21
|
1707 | ||
|
1
Oct 17
|
2307 | ||
|
1
Jun 24
|
4734 | ||
|
0
Jan 23
|
3335 |