Skip to content

Commit

Permalink
[ADD] website_search_header: allow to search from within the search h…
Browse files Browse the repository at this point in the history
…eader
  • Loading branch information
JordiBForgeFlow committed Nov 22, 2023
1 parent a56c2a1 commit 8523718
Show file tree
Hide file tree
Showing 11 changed files with 671 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup/website_search_header/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
3 changes: 3 additions & 0 deletions website_search_header/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
======================
Website Search Header
======================
Empty file.
24 changes: 24 additions & 0 deletions website_search_header/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2023 ForgeFlow, S.L.
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0).

{
"name": "Website Search in Header",
"category": "Website",
"version": "16.0.1.0.0",
"author": "ForgeFlow, Ooops, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/website",
"license": "LGPL-3",
"depends": [
"website",
"web",
],
"data": [
"views/templates.xml",
],
"assets": {
"web.assets_frontend": [
"website_search_header/static/src/scss/website_search_header.scss",
],
},
"installable": True,
}
1 change: 1 addition & 0 deletions website_search_header/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* ForgeFlow <https://www.forgeflow.com>
1 change: 1 addition & 0 deletions website_search_header/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module adds a search bar in the header of your website
Binary file added website_search_header/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8523718

Please sign in to comment.