41 lines
1018 B
HTML
41 lines
1018 B
HTML
{% extends "html/page.html" %}
|
|
|
|
{% block title %}{{ name }}{% endblock %}
|
|
|
|
{% 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 description %}
|
|
<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;">
|
|
{% for d in sub_groups %}
|
|
<div class="span2">
|
|
<a href="{{ d.page_name }}">{{ d.name }} ({{ d.count }})</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% if items %}
|
|
<div id="search-list">
|
|
<table class="table">
|
|
{% for item in items %}
|
|
{{ item }}
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |