2016-01-01 11:53:12 +00:00
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
|
2015-06-01 11:53:42 +00:00
|
|
|
{% block header_actions %}
|
|
|
|
{% include 'templates/includes/product_search_box.html' %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-01-04 12:20:40 +00:00
|
|
|
{% block breadcrumbs %}
|
|
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-01-01 11:53:12 +00:00
|
|
|
{% block page_content %}
|
2014-04-18 10:45:31 +00:00
|
|
|
<div class="item-group-content">
|
|
|
|
<div>
|
|
|
|
{% if slideshow %}<!-- slideshow -->
|
|
|
|
{% include "templates/includes/slideshow.html" %}
|
|
|
|
{% endif %}
|
|
|
|
{% if description %}<!-- description -->
|
|
|
|
<div itemprop="description">{{ description or ""}}</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{% if items %}
|
|
|
|
<div id="search-list" class="row">
|
|
|
|
{% for item in items %}
|
|
|
|
{{ item }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2016-02-24 11:59:25 +00:00
|
|
|
<div class="text-center">
|
|
|
|
{% if frappe.form_dict.start|int > 0 %}
|
|
|
|
<a class="btn btn-default" href="{{ pathname }}?start={{ frappe.form_dict.start|int - 24 }}">Prev</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if items|length == 24 %}
|
|
|
|
<a class="btn btn-default" href="{{ pathname }}?start={{ frappe.form_dict.start|int + 24 }}">Next</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2014-04-18 10:45:31 +00:00
|
|
|
{% else %}
|
2014-04-21 16:40:15 +00:00
|
|
|
<div class="text-muted">No items listed.</div>
|
2014-04-18 10:45:31 +00:00
|
|
|
{% endif %}
|
2014-04-21 06:12:22 +00:00
|
|
|
</div>
|
2014-04-18 10:45:31 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2015-02-23 16:44:12 +00:00
|
|
|
|
|
|
|
{% block style %}
|
|
|
|
<style>
|
|
|
|
.product-image.missing-image {
|
2015-02-24 12:20:44 +00:00
|
|
|
border: 1px dashed {{ theme.border_color or "#d1d8dd" }};
|
2015-02-23 16:44:12 +00:00
|
|
|
}
|
|
|
|
|
2015-02-24 12:20:44 +00:00
|
|
|
.product-image.missing-image .octicon {
|
|
|
|
color: {{ theme.border_color or "#d1d8dd" }};
|
2015-02-23 16:44:12 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|