brotherton-erpnext/website/templates/html/product_group.html

46 lines
1.2 KiB
HTML
Raw Normal View History

{% extends "html/page.html" %}
2012-12-19 04:44:59 +00:00
{% block title %}{{ name }}{% endblock %}
2012-12-19 04:44:59 +00:00
{% block content %}
<div class="layout-wrapper layout-wrapper-background">
<div class="web-content" id="content-product_group">
<div class="layout-main" style="padding: 30px;">
{% include 'html/product_search_box.html' %}
{% include 'html/product_breadcrumbs.html' %}
{% if slideshow %}<!-- slideshow -->
{% include "html/slideshow.html" %}
{% endif %}
{% if description %}<!-- description -->
2012-12-19 04:44:59 +00:00
<div>{{ description or ""}}</div>
{% else %}
<h3>{{ name }}</h3>
{% endif %}
{% if sub_groups %}
<div class="well well-small">
<div class="container-fluid" style="padding-left: 0px; margin-left:-10px; line-height: 2em;">
2012-12-19 04:44:59 +00:00
{% for d in sub_groups %}
2012-12-27 11:20:24 +00:00
<div class="span4">
<a href="{{ d.page_name }}">{{ d.name }} ({{ d.count }})</a>
</div>
2012-12-19 04:44:59 +00:00
{% endfor %}
</div>
</div>
{% endif %}
{% if items %}
<div id="search-list">
<table class="table">
{% for item in items %}
{{ item }}
{% endfor %}
</table>
</div>
2012-12-28 05:00:46 +00:00
{% else %}
<div class="alert">No items listed.</div>
{% endif %}
2012-12-19 04:44:59 +00:00
</div>
</div>
</div>
{% endblock %}