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.
47 lines
1.7 KiB
47 lines
1.7 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<templates id="template" xml:space="preserve">
|
|
|
|
<t t-extend="Chrome">
|
|
<t t-jquery="div.pos-rightheader" t-operation="append">
|
|
<t t-if='widget.pos.config and widget.pos.config.pos_lock'>
|
|
<div class="oe_status">
|
|
<i class="fa fa-lock pos-lock"/>
|
|
</div>
|
|
</t>
|
|
</t>
|
|
</t>
|
|
|
|
<t t-name="SessionLock">
|
|
<div class="modal-dialog">
|
|
<div class='screen_lock'>
|
|
<i class='fa fa-lock' />
|
|
</div>
|
|
</div>
|
|
</t>
|
|
|
|
<t t-name="LoginScreenWidget">
|
|
<div class='login-screen screen'>
|
|
<div class='screen-content-flexbox'>
|
|
<div class='button back back_pos'>
|
|
<i class='fa fa-arrow-circle-left'/>
|
|
</div>
|
|
<div class='login-picture'>
|
|
<t t-if='!widget.pos.get_cashier().id'>
|
|
<i class='fa fa-camera'></i>
|
|
</t>
|
|
<t t-if='widget.pos.get_cashier().id'>
|
|
<img t-att-src='widget.user_icon_url(widget.pos.get_cashier().id)' />
|
|
</t>
|
|
</div>
|
|
<div><h2><t t-esc="widget.pos.get_cashier().name"/></h2></div>
|
|
<div class="password_input">
|
|
<input class='user_password' name='password' placeholder='Password' type="password"/>
|
|
</div>
|
|
<div><span class="pos_invalid_password"/></div>
|
|
<div class='button login pos_login'>
|
|
<i class="fa fa-arrow-circle-right" aria-hidden="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</templates>
|
|
|