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.

17 lines
624 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="stale_modules">
  4. <p>The following modules need to be upgraded:</p>
  5. <ul>
  6. <t t-foreach="modules" t-as="module">
  7. <li>
  8. <a t-att-href="'#id={}&amp;view_type=form&amp;model=ir.module.module'.format(module.id)">
  9. <t t-esc="module.shortdesc" /> (technical name: <t t-esc="module.name" />;
  10. version on disk: <strong><t t-esc="module.installed_version" /></strong>;
  11. version in DB: <strong><t t-esc="module.latest_version" /></strong>)
  12. </a>
  13. </li>
  14. </t>
  15. </ul>
  16. </template>
  17. </odoo>