blob: c9a7549ae62b45b98ee3f5dbb11af52fb0d29670 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="UTF-8" ?>
<templates id="template" xml:space="preserve">
<t t-name="TableWidget" owl="1">
<div t-if="!props.isSelected" class="table" t-on-click.stop="trigger('select-table', props.table)">
<span class="table-cover" t-att-class="{ full: fill >= 1 }"></span>
<span t-att-class="orderCountClass" t-att-hidden="orderCount === 0">
<t t-esc="orderCount" />
</span>
<span class="label">
<t t-esc="props.table.name" />
</span>
<span class="table-seats">
<t t-esc="props.table.seats" />
</span>
</div>
</t>
</templates>
|