summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/reports/templates/widgets/filter_bar.html
blob: 6fbe585ab4ec4de8c1032832d9e10da4195c2379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% spaceless %}
{% if filters %}
{% for filter, filter_url in filters %}
  {% if forloop.first %}
    <div class="filter_bar">Active filters (click to remove):
  {% endif %}
       <a href='{{ filter_url }}'>{{ filter|capfirst }}</a>{% if not forloop.last %}, {% endif %}
  {% if forloop.last %}
    </div>
  {% endif %}
{% endfor %}
{% endif %}
{% endspaceless %}