first push message
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<odoo>
|
||||
<data>
|
||||
<!--
|
||||
<template id="listing">
|
||||
<ul>
|
||||
<li t-foreach="objects" t-as="object">
|
||||
<a t-attf-href="#{ root }/objects/#{ object.id }">
|
||||
<t t-esc="object.display_name"/>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</template>
|
||||
<template id="object">
|
||||
<h1><t t-esc="object.display_name"/></h1>
|
||||
<dl>
|
||||
<t t-foreach="object._fields" t-as="field">
|
||||
<dt><t t-esc="field"/></dt>
|
||||
<dd><t t-esc="object[field]"/></dd>
|
||||
</t>
|
||||
</dl>
|
||||
</template>
|
||||
-->
|
||||
</data>
|
||||
</odoo>
|
||||
@@ -0,0 +1,9 @@
|
||||
<odoo>
|
||||
<data>
|
||||
<menuitem name="Project"
|
||||
id="project.menu_main_pm"
|
||||
groups="project.group_project_manager,project.group_project_user,project_inherit.group_sa_manager"
|
||||
web_icon="project,static/description/icon.png"
|
||||
sequence="3"/>
|
||||
</data>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user