templates.xml 852 B

12345678910111213141516171819202122
  1. <openerp>
  2. <data>
  3. <!-- Assets for brand -->
  4. <template id="eiru_brand.assets" name="Eiru Brand" inherit_id="web.assets_backend">
  5. <xpath expr="." position="inside">
  6. <link rel="stylesheet" href="/eiru_brand/static/src/main.css" />
  7. </xpath>
  8. </template>
  9. <!-- Menu brand -->
  10. <template id="eiru_brand.menu" name="Eiru Brand" inherit_id="web.menu">
  11. <xpath expr="//ul[1]" position="before">
  12. <div class="menu_eiru_brand">
  13. <img class="menu_brand_logo" src="/eiru_brand/static/img/eiru.png" alt="Eiru Software" />
  14. <div>
  15. <h2>Eiru</h2>
  16. <h3>Software</h3>
  17. </div>
  18. </div>
  19. </xpath>
  20. </template>
  21. </data>
  22. </openerp>