brotherton-erpnext/erpnext/templates/pages/product_search.html

33 lines
841 B
HTML
Raw Normal View History

2016-01-01 11:53:12 +00:00
{% extends "templates/web.html" %}
{% block title %} {{ _("Product Search") }} {% endblock %}
{% block header %}<h2>{{ _("Product Search") }}</h2>{% endblock %}
2016-01-01 11:53:12 +00:00
{% block page_content %}
<script>{% include "templates/includes/product_list.js" %}</script>
<script>
2016-01-01 11:53:12 +00:00
frappe.ready(function() {
2016-06-27 09:24:46 +00:00
var txt = get_url_arg("search");
$(".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">
2014-09-04 09:46:13 +00:00
</div>
<div style="text-align: center;">
2014-09-04 09:46:13 +00:00
<div class="more-btn"
style="display: none; text-align: center;">
<button class="btn btn-default">{{ _("More...") }}</button>
</div>
</div>
</div>
{% endblock %}