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.
 
 
 
 
 

56 lines
2.1 KiB

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<!--The template for broadcast orders -->
<template id="website_broadcast_order" name="My Jobs">
<t t-call="website.layout">
<form style="background-color:pink;">
<h3 align="center">
Broadcast Order
</h3>
<br/>
<t t-if="broadcast">
<table class="table table-bordered mb64">
<thead>
<tr>
<th>Order No</th>
<th>Customer</th>
<th>Address</th>
<th>Distance</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<br/>
<br/>
<br/>
<tr t-foreach="broadcast" t-as="order">
<td>
<t t-esc="order['order']"/>
</td>
<td>
<t t-esc="order['customer']"/>
</td>
<td>
<t t-esc="order['address']"/>
</td>
<td>
<t t-esc="order['distance']"/>
</td>
<td>
<t t-esc="order['price']"/>
</td>
</tr>
</tbody>
</table>
</t>
<t t-else="">
<span>
<h2 align="center">
<b>There is no broadcast orders</b>
</h2>
</span>
</t>
</form>
</t>
</template>
</odoo>