summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/reports/templates/widgets/filter_bar.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Reports/reports/templates/widgets/filter_bar.html')
-rw-r--r--src/lib/Bcfg2/Server/Reports/reports/templates/widgets/filter_bar.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/lib/Bcfg2/Server/Reports/reports/templates/widgets/filter_bar.html b/src/lib/Bcfg2/Server/Reports/reports/templates/widgets/filter_bar.html
deleted file mode 100644
index 759415507..000000000
--- a/src/lib/Bcfg2/Server/Reports/reports/templates/widgets/filter_bar.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% 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 %}