summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Reports/reports/templates/widgets/filter_bar.html
blob: 6b57baf6a764741c4d9b7796881704b957b79549 (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 %}