filenames without _ (spare my pinkie)
[myslice.git] / myslice / viewutils.py
index 374417e..ecdd81f 100644 (file)
@@ -2,11 +2,11 @@
 
 from copy import deepcopy
 
-standard_topmenu_items = [ { 'label':'Slice',  'href': '/slice/'},
-                        { 'label':'Scroll', 'href': '/scroll/'},
-                        { 'label':'Tab', 'href': '/tab/'},
-                        { 'label':'Plugin', 'href': '/plugin/'},
-                        ]
+standard_topmenu_items = [ { 'label':'Plugin', 'href': '/plugin/'},
+                           { 'label':'Slice',  'href': '/slice/'},
+                           { 'label':'Scroll', 'href': '/scroll/'},
+                           { 'label':'Tab', 'href': '/tab/'},
+                           ]
 
 #login_out_items = { False: { 'label':'Login', 'href':'/login/'},
 #                    True:  { 'label':'Logout', 'href':'/logout/'}}
@@ -23,7 +23,7 @@ def topmenu_items (current,request=None):
 def the_user (request):
     "This code below is broken"
     if not request.user.is_authenticated (): 
-        print 'void'
+#        print 'void user!'
         return ''
     else: 
         return request.user.email
@@ -57,3 +57,6 @@ hard_wired_list.append("just like a standard plugin can be set as visible or not
 hard_wired_list.append("")    
 hard_wired_list.append("OTOH and IMHO, there should be two separate and explicit subclasses of SimpleList for slices or testbeds")
 
+quickfilter_criterias = [{'key': 'Slice', 'values': ['slice1','slice2']}, \
+                          {'key': 'Type', 'values': ['type1','type2']}, \
+                          {'key': 'Network', 'values': ['net1','net2']}]