regluit/frontend/templates/refine.html

22 lines
901 B
HTML
Raw Normal View History

2016-05-11 14:41:50 +00:00
{% if vertex.get_other_groups %}
2014-11-21 02:11:15 +00:00
<div class="jsmodule">
2014-12-03 02:56:45 +00:00
<h3 class="jsmod-title"><span>Select</span></h3>
2014-11-21 02:11:15 +00:00
<div class="jsmod-content">
<ul class="menu level1">
<li class="first parent">
<span>Show me only...</span>
2014-12-02 21:09:30 +00:00
{% for group in vertex.get_other_groups %}
2014-11-21 02:11:15 +00:00
<ul class="menu level2">
2014-12-02 21:09:30 +00:00
{% for facet in group.get_facets %}
2016-11-10 21:21:57 +00:00
{% if forloop.first %}<li class="first"><span>{{ group.label }}</span></li>{% endif %}
2015-04-28 03:24:02 +00:00
<li><a href="{% url 'faceted_list' path %}{{facet.facet_name}}/?{% if setkw %}setkw={{setkw}}&amp;{% endif %}order_by={{order_by}}" title="{{ facet.title }}"><span>{{ facet.label }}</span></a></li>
2014-12-02 21:09:30 +00:00
{% endfor %}
2014-11-21 02:11:15 +00:00
</ul>
2014-12-02 21:09:30 +00:00
{% endfor %}
2014-11-21 02:11:15 +00:00
</li>
</ul>
</div>
</div>
2014-12-02 21:09:30 +00:00
<br />
{% endif %}