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.
40 lines
512 B
40 lines
512 B
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<openerp>
|
|
<data noupdate="1">
|
|
|
|
<template id="tpl_help">
|
|
|
|
<t t-call="report.html_container">
|
|
<t t-call="report.internal_layout">
|
|
|
|
|
|
<t t-foreach="docs" t-as="o">
|
|
|
|
<div class="page">
|
|
|
|
<div t-raw="o.enduser_help"/>
|
|
|
|
<hr width="70%"/>
|
|
|
|
<h3 t-if="o.advanced_help">Help from developer</h3>
|
|
<div t-raw="o.advanced_help"/>
|
|
|
|
<hr width="70%"/>
|
|
|
|
<h3 t-if="o.help">Help from Odoo</h3>
|
|
<div t-raw="o.help"/>
|
|
|
|
</div>
|
|
|
|
<!--end foreach-->
|
|
</t>
|
|
|
|
</t>
|
|
</t>
|
|
|
|
</template>
|
|
|
|
|
|
</data>
|
|
</openerp>
|