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.
23 lines
1017 B
23 lines
1017 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!--This is for searching and grouping of license-->
|
|
<template id="website_portal_search_license"
|
|
inherit_id="portal.portal_searchbar">
|
|
<xpath expr="//div[@id='o_portal_navbar_content']" position="after">
|
|
<div t-if="license" style="margin-left: auto;"
|
|
class="search_group_by_license">
|
|
<select id="group_select_license" class="btn btn-secondary">
|
|
<option value="0" style="color:gray;">Group By</option>
|
|
<option value="1">Type</option>
|
|
<option value="2">Tags</option>
|
|
</select>
|
|
<input type="text" placeholder="Enter License Number"
|
|
id="license_search_box">
|
|
</input>
|
|
<button type="button" class="btn btn-secondary"
|
|
id="search_license">Search
|
|
</button>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|