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.
20 lines
948 B
20 lines
948 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--This XML file contains templates for creating form components in the web application.-->
|
|
<templates id="timepicker" xml:space="preserve">
|
|
<t t-name="FieldTimePicker">
|
|
<span t-if="widget.mode !== 'readonly'">
|
|
<div class="input-group timepicker-component">
|
|
<input type="text"
|
|
t-att-id="widget.id_for_label"
|
|
t-att-tabindex="widget.attrs.tabindex"
|
|
t-att-autofocus="widget.attrs.autofocus"
|
|
t-att-placeholder="widget.attrs.placeholder"
|
|
t-att-maxlength="widget.field.size"
|
|
class="timepickerg form-control"
|
|
/>
|
|
<span class="input-group-addon" style="display:none;"><i/></span>
|
|
</div>
|
|
</span>
|
|
<span t-if="widget.mode === 'readonly'"/>
|
|
</t>
|
|
</templates>
|
|
|