facet_list.html 579 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% ckan_extends %}
{% block facet_list %}
    {# hide empty facet (Organizations and Tags) #}
    {% set hide_empty = hide_empty or true %}
    {% with items = items or h.get_facet_items_dict(name, search_facets or c.search_facets) %}
	{% if items or not hide_empty %}
	    {% if within_tertiary %}
		{% set nav_class = 'nav nav-pills nav-stacked' %}
		{% set nav_item_class = ' ' %}
		{% set wrapper_class = 'nav-facet nav-facet-tertiary' %}
	    {% endif %}
	    {% block facet_list_item %}
		    {{ super() }}
	    {% endblock %}
	{% endif %}
    {% endwith %}
{% endblock %}