14 lines
646 B
XML
14 lines
646 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Add CPP Entries link to portal home dashboard -->
|
|
<template id="portal_my_home_cpp" inherit_id="portal.portal_my_home" name="CPP Entries Link" priority="30">
|
|
<xpath expr="//div[hasclass('o_portal_docs')]" position="inside">
|
|
<t t-call="portal.portal_docs_entry">
|
|
<t t-set="title">CPP Entries</t>
|
|
<t t-set="url" t-value="'/my/cpp_entries'"/>
|
|
<t t-set="placeholder_count" t-value="'cpp_entries_count'"/>
|
|
<t t-set="icon" t-value="'fa fa-list-alt'"/>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
</odoo> |