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.

42 lines
524 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  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. <b><h1 t-field="o.name"/></b>
  10. <div t-raw="o.owner_help"/>
  11. <hr width="70%"/>
  12. <h3 t-if="o.custom_help">Help from developer</h3>
  13. <div t-raw="o.custom_help"/>
  14. <hr width="70%"/>
  15. <h3 t-if="o.help">Help from Odoo</h3>
  16. <div t-raw="o.help"/>
  17. </div>
  18. <!--end foreach-->
  19. </t>
  20. </t>
  21. </t>
  22. </template>
  23. </data>
  24. </openerp>