summaryrefslogtreecommitdiff
path: root/addons/pos_restaurant/static/src/xml/ChromeWidgets/BackToFloorButton.xml
blob: 2b5c865ca18291cb7033b50f811d4c087f0180a3 (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="BackToFloorButton" owl="1">
        <span t-if="hasTable" class="order-button floor-button" t-on-click="backToFloorScreen">
            <i class="fa fa-angle-double-left" role="img" aria-label="Back to floor" title="Back to floor" />
            <span> </span>
            <span t-esc="floor.name" />
            <span> </span>
            <span class="table-name">
                <span>( </span>
                <span t-esc="table.name" />
                <span> )</span>
            </span>
        </span>
        <span t-else=""></span>
    </t>

</templates>