2015-02-23 22:34:27 +05:30

72 lines
1.5 KiB
HTML

{% block content %}
<div class="item-group-content">
{% include 'templates/includes/product_search_box.html' %}
<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>
{% if (items|length)==100 %}
<div class="text-muted info">Showing top 100 items.</div>
{% endif %}
{% else %}
<div class="text-muted">No items listed.</div>
{% endif %}
</div>
</div>
<script>
$(function() {
if(window.logged_in && getCookie("system_user")==="yes") {
frappe.has_permission("Item Group", "{{ name }}", "write", function(r) {
frappe.require("/assets/frappe/js/frappe/website/editable.js");
frappe.make_editable($('[itemprop="description"]'), "Item Group", "{{ name }}", "description");
});
}
});
</script>
{% endblock %}
{% block style %}
<style>
.product-link {
display: block;
text-align: center;
}
.product-image-wrapper {
max-width: 300px;
margin: auto;
}
.product-image {
width: 100%;
height: 0;
padding-bottom: 100%;
border-radius: 4px;
border: 1px solid transparent;
background-size: cover;
background-repeat: no-repeat;
}
.product-image.missing-image {
border: 1px dashed {{ border_color or "#d1d8dd" }};
}
.product-text {
padding: 15px 0px;
}
</style>
{% endblock %}