mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
This module allows the creation of an online help available from the lists and forms in Odoo. When loading a view, the module generates a button allowing access to an help page for the related model if the page exists and the user is member of the group 'Help reader'. If the page doesn't exist and the user is member of the group 'Help writer', the module generate a button allowing the creation an help page. The help pages are created and managed via the website Module.
14 lines
457 B
XML
14 lines
457 B
XML
<templates>
|
|
<t t-name='HelpOnline.Buttons'>
|
|
<div class='oe_help_online_buttons'>
|
|
<ul class='oe_view_manager_switch oe_button_group oe_right'>
|
|
<li class='oe_i'>
|
|
<a class='oe_list_button_help_online'
|
|
t-att-title='url_info.title'
|
|
t-att-href='url_info.url' target='_blank'></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</t>
|
|
</templates>
|