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.
|
- <?xml version="1.0" encoding="UTF-8"?>
- <odoo>
- <template id="show_website_info" inherit_id="website.show_website_info">
- <xpath expr="//dl[@t-foreach='apps']" position="replace">
- <table class="table">
- <tr t-foreach="apps" t-as="app">
- <th>
- <a t-att-href="app.website">
- <t t-esc="app.name" />
- </a>
- </th>
- <td>
- <t t-esc="app.summary" />
- </td>
- </tr>
- </table>
- </xpath>
- </template>
- </odoo>
|