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.
 
 
 
 
 

59 lines
2.6 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Template for the truck details-->
<template id="truck_page" name="Truck">
<t t-call="website.layout">
<div id="wrap">
<h1 align='center'>Trucks</h1>
<div class="container">
<div class="col-md-12">
<div class="row">
<table class="table">
<thead>
<tr>
<th>
TRUCK TYPE
</th>
<th>
SIZE(FT)
</th>
<th>
HOUSE HOLD CAPACITY
</th>
<th>
MAX WEIGHT
</th>
</tr>
</thead>
<t t-foreach='truck_type_ids'
t-as="truck_type_id">
<tr>
<td>
<t t-esc="truck_type_id.name"/>
</td>
<td>
<t t-esc="truck_type_id.length"/>L
X
<t t-esc="truck_type_id.width"/>W X
<t t-esc="truck_type_id.height"/>H
</td>
<td>
<t t-esc="truck_type_id.capacity"/>
BHK
</td>
<td>
Max Load
<t t-esc="truck_type_id.weight"/>
<t t-esc="truck_type_id.unit"/>
</td>
</tr>
</t>
</table>
</div>
</div>
</div>
</div>
</t>
</template>
</odoo>