2012-12-14 11:09:27 +00:00
|
|
|
{% extends "html/page.html" %}
|
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' %}
|
|
|
|
{% if description %}
|
|
|
|
<div>{{ description or ""}}</div>
|
|
|
|
{% else %}
|
|
|
|
<h3>{{ name }}</h3>
|
|
|
|
{% endif %}
|
|
|
|
{% if sub_groups %}
|
|
|
|
<div class="well">
|
|
|
|
<div class="container-fluid">
|
|
|
|
{% for d in sub_groups %}
|
|
|
|
<div class="span2">
|
|
|
|
<i class="icon-chevron-right"></i>
|
|
|
|
<a href="{{ d.page_name }}">{{ d.name }}</a></div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% if obj.doclist.get({"doctype":"Featured Item"}) %}
|
|
|
|
<hr>
|
|
|
|
<h3>Featured Products</h3>
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|