templates.xml 810 B

123456789101112131415161718192021
  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. </div>
  17. </div>
  18. </xpath>
  19. </template>
  20. </data>
  21. </openerp>