disable label plugin for webui
This commit is contained in:
parent
14db4bc999
commit
4ea2bf9447
|
@ -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}
|
||||
|
|
|
@ -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]:
|
||||
|
|
Loading…
Reference in New Issue