summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/reports/templates/widgets/filter_bar.html
blob: 75941550717176a3935131e6e8c2072f3307431c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% spaceless %}
<div class="filter_bar">
<form name='filter_form'>
{% if filters %}
{% for filter, filter_url in filters %}
  {% if forloop.first %}
    Active filters (click to remove):
  {% endif %}
       <a href='{{ filter_url }}'>{{ filter|capfirst }}</a>{% if not forloop.last %}, {% endif %}
  {% if forloop.last %}
    {% if groups %}|{% endif %}
  {% endif %}
{% endfor %}
{% endif %}
{% if groups %}
<label for="id_group">Group filter:</label>
<select id="id_group" name="group" onchange="javascript:url=document.forms['filter_form'].group.value; if(url) { location.href=url }">
  {% for group, group_url, selected in groups %}
    <option label="{{group}}" value="{{group_url}}" {% if selected %}selected {% endif %}/>
  {% endfor %}
</select>
{% endif %}
</form>
</div>
{% endspaceless %}