|
- <?xml version="1.0" encoding="utf-8"?>
- <odoo>
- <template id="data_list_template" name="Car List">
- <div id="wrap" class="container">
- <h1>Cars</h1>
- <t t-foreach="cars" t-as="car">
- <div class="row">
- <span t-field="car.name" />,
- <span t-field="car.color" />,
- </div>
- </t>
- </div>
- </template>
- <data>
- <!--
- <template id="listing">
- <ul>
- <li t-foreach="objects" t-as="object">
- <a t-attf-href="#{ root }/objects/#{ object.id }">
- <t t-esc="object.display_name"/>
- </a>
- </li>
- </ul>
- </template>
- <template id="object">
- <h1><t t-esc="object.display_name"/></h1>
- <dl>
- <t t-foreach="object._fields" t-as="field">
- <dt><t t-esc="field"/></dt>
- <dd><t t-esc="object[field]"/></dd>
- </t>
- </dl>
- </template>
- -->
- </data>
- </odoo>
|