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.

46 lines
1.2 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data noupdate="1">
  4. <template id="all_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. <t t-set="actions" t-value="o.get_help_actions()"/>
  10. <h2 class="text-center" t-if="o._rpt_menu" t-raw="o._rpt_menu.name"/>
  11. <ul>
  12. <t t-foreach="actions" t-as="act">
  13. <li>
  14. <a t-attf-href="#-{{ o._anchorize(act.name) }}" t-raw='act.name'/>
  15. </li>
  16. </t>
  17. </ul>
  18. <t t-foreach="actions" t-as="act">
  19. <h2 t-attf-id="-{{ o._anchorize(act.name) }}" t-raw='act.name'/>
  20. <div class="bg-warning" t-if="act.enduser_help" t-raw="act.enduser_help"/>
  21. <div class="bg-warning" t-if="act.enduser_help_model" t-raw="act.enduser_help_model"/>
  22. <hr width="70%"/>
  23. <div t-if="act.advanced_help" t-raw="act.advanced_help"/>
  24. <div t-if="act.advanced_help_model" t-raw="act.advanced_help_model"/>
  25. </t>
  26. <hr width="70%"/>
  27. </div>
  28. <!--end foreach-->
  29. </t>
  30. </t>
  31. </t>
  32. </template>
  33. </data>
  34. </openerp>