35 lines
843 B
HTML
35 lines
843 B
HTML
{% block title %} {{ "Product Search" }} {% endblock %}
|
|
|
|
{% block header %}<h2>Product Search</h2>{% endblock %}
|
|
|
|
{% block header_actions %}
|
|
{% include 'templates/includes/product_search_box.html' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<script>{% include "templates/includes/product_list.js" %}</script>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
var txt = get_url_arg("q");
|
|
$(".search-results").html("Search results for: " + txt);
|
|
window.search = txt;
|
|
window.start = 0;
|
|
window.get_product_list();
|
|
});
|
|
</script>
|
|
|
|
<div class="product-search-content">
|
|
<h3 class="search-results">Search Results</h3>
|
|
<div id="search-list" class="row">
|
|
|
|
</div>
|
|
<div style="text-align: center;">
|
|
<div class="more-btn"
|
|
style="display: none; text-align: center;">
|
|
<button class="btn btn-default">More...</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|