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.

32 lines
1.0 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright 2018 Rémy Taymans <remytaymans@gmail.com>
  4. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  5. -->
  6. <odoo>
  7. <!-- Add eater information -->
  8. <template
  9. id="website_eater_details_side"
  10. name="Website Eater Details Side"
  11. priority="50"
  12. inherit_id="portal.portal_layout">
  13. <xpath expr="//div[hasclass('o_portal_my_details')]" position="after">
  14. <div class="o_my_details_eater mt-2">
  15. <h4 class="page-header">Your Eaters</h4>
  16. <hr class="mt-1 mb-0"/>
  17. <p>
  18. <ul t-if="eaters">
  19. <li t-foreach="eaters" t-as="eater">
  20. <t t-esc="eater.name"/>
  21. </li>
  22. </ul>
  23. <span t-if="not eaters">
  24. You have no eaters
  25. </span>
  26. </p>
  27. </div>
  28. </xpath>
  29. </template>
  30. </odoo>