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

9 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data noupdate="1">
  4. <template id="tpl_help">
  5. <t t-call="report.html_container">
  6. <t t-call="report.internal_layout">
  7. <t t-foreach="docs" t-as="o">
  8. <div class="page">
  9. <div t-raw="o.enduser_help"/>
  10. <hr width="70%"/>
  11. <h3 t-if="o.advanced_help">Help from developer</h3>
  12. <div t-raw="o.advanced_help"/>
  13. <hr width="70%"/>
  14. <h3 t-if="o.help">Help from Odoo</h3>
  15. <div t-raw="o.help"/>
  16. </div>
  17. <!--end foreach-->
  18. </t>
  19. </t>
  20. </t>
  21. </template>
  22. </data>
  23. </openerp>