disable label plugin for webui

This commit is contained in:
Martijn Voncken 2008-08-16 15:04:12 +00:00
parent 14db4bc999
commit 4ea2bf9447
2 changed files with 3 additions and 2 deletions

View File

@ -106,7 +106,8 @@ class index:
#organize-filters
label_filters = {}
if 'label' in [pl.lower() for pl in proxy.get_enabled_plugins()]:
#disable label plugin for now..
if False and 'label' in [pl.lower() for pl in proxy.get_enabled_plugins()]:
filter_dict = {}
if vars.filter_cat and vars.filter_value and vars.filter_value <> "All":
filter_dict = {vars.filter_cat:vars.filter_value}

View File

@ -23,7 +23,7 @@ $if get('filter_cat') == "keyword":
<!--
$filter_items
-->
$for cat in ["state", "tracker", "label"]:
$for cat in ["state", "tracker_host", "label"]:
<div class="title">$cat</div>
<ul>
$for value, count in filter_items[cat]: