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.
39 lines
1.5 KiB
39 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Template for showing the goods type details-->
|
|
<template id="goods_page" name="Goods">
|
|
<t t-call="website.layout">
|
|
<div id="wrap">
|
|
<h1 align='center'>Goods Type</h1>
|
|
<div class="container">
|
|
<div class="col-md-12">
|
|
<div class="row">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
S.NO
|
|
</th>
|
|
<th>
|
|
Goods Type
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<t t-foreach='goods_ids' t-as="goods_id">
|
|
<tr>
|
|
<td>
|
|
<t t-esc="goods_id_index + 1"/>
|
|
</td>
|
|
<td>
|
|
<t t-esc="goods_id.name"/>
|
|
</td>
|
|
</tr>
|
|
</t>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</template>
|
|
</odoo>
|