2021-04-21 13:52:23 +05:30
{% extends "templates/web.html" %}
{% block title %}{{ _('Search') }}{% endblock %}
2021-04-22 14:21:29 +05:30
{%- block head_include %}
< link rel = "stylesheet" href = "search.css" >
{% endblock -%}
2021-04-21 13:52:23 +05:30
{% block header %}
< div class = "mb-6" > {{ _('Search Products') }}< / div >
{% endblock header %}
{% block page_content %}
2021-04-29 20:01:31 +05:30
< div class = "input-group mb-3" >
< input type = "text" name = "query" id = "search-box" class = "form-control" placeholder = "Search for products..." aria-label = "Product" aria-describedby = "button-addon2" >
< div class = "input-group-append" >
< button class = "btn btn-outline-secondary" type = "button" id = "button-addon2" > Search< / button >
< / div >
< / div >
2021-04-26 11:15:20 +05:30
2021-04-29 20:01:31 +05:30
< div class = "row mt-2" >
<!-- Search Results -->
< div class = "col-sm" >
< h2 > Products< / h2 >
< ul id = "results" class = "list-group" > < / ul >
< / div >
{% set show_categories = frappe.db.get_single_value('E Commerce Settings', 'show_categories_in_search_autocomplete') %}
{% if show_categories %}
< div id = "categories" class = "col-sm" >
< h2 > Categories< / h2 >
< ul id = "category-suggestions" >
< / ul >
< / div >
{% endif %}
2021-04-26 11:15:20 +05:30
< / div >
2021-04-21 13:52:23 +05:30
{% endblock %}