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.
17 lines
658 B
17 lines
658 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<templates xml:space="preserve">
|
|
<t t-name="FieldTimePicker">
|
|
<!-- FieldTimePicker template to add input field-->
|
|
<div class="input-group timepicker-component">
|
|
<input type="text"
|
|
t-ref="input_time"
|
|
t-att-id="props.id"
|
|
t-on-click="(ev) => this._onClickTimeField(ev)"
|
|
class="timepickerg form-control o_input"
|
|
/>
|
|
<span class="input-group-addon" style="display:none;">
|
|
<i class="fa fa-user-o me-1"/>
|
|
</span>
|
|
</div>
|
|
</t>
|
|
</templates>
|
|
|