37 lines
1.2 KiB
HTML
Raw Normal View History

2016-01-01 17:23:12 +05:30
{% extends "templates/web.html" %}
{% block header %}<h1>{{ name }}</h1>{% endblock %}
2016-01-04 17:50:40 +05:30
2016-01-01 17:23:12 +05:30
{% block page_content %}
2016-05-02 11:43:44 +05:30
<div class="item-group-content" itemscope itemtype="http://schema.org/Product">
<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" {% if not products_as_list -%} class="row" {%- endif %}>
2016-12-19 11:51:02 +05:30
{% for i in range(0, page_length) %}
{% if items[i] %}
{{ items[i] }}
{% endif %}
{% endfor %}
</div>
<div class="text-center item-group-nav-buttons">
{% if frappe.form_dict.start|int > 0 %}
2017-05-22 13:09:36 +05:30
<a class="btn btn-default" href="/{{ pathname }}?start={{ frappe.form_dict.start|int - page_length }}">{{ _("Prev") }}</a>
{% endif %}
2016-12-19 11:51:02 +05:30
{% if items|length > page_length %}
2017-05-22 13:09:36 +05:30
<a class="btn btn-default" href="/{{ pathname }}?start={{ frappe.form_dict.start|int + page_length }}">{{ _("Next") }}</a>
{% endif %}
</div>
{% else %}
2017-05-22 13:09:36 +05:30
<div class="text-muted">{{ _("No items listed") }}.</div>
{% endif %}
2014-04-21 11:42:22 +05:30
</div>
</div>
2016-04-20 16:20:49 +05:30
{% endblock %}