mail_templates_module_install.xml 742 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="base_install_request.base_module_install_review_description">
  4. <p t-if="any(app.application for app in apps)">The following apps will be installed:</p>
  5. <div class="container-fluid">
  6. <ul class="list-unstyled row">
  7. <t t-foreach="apps" t-as="app">
  8. <li class="mt8 col-lg-6" t-if="app.application">
  9. <div>
  10. <img width="24px" height="24px" class="img-fluid" t-att-src="app.icon"/>
  11. <t t-esc="app.shortdesc"/>
  12. </div>
  13. </li>
  14. </t>
  15. </ul>
  16. </div>
  17. </template>
  18. </odoo>