X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ui%2Ftopmenu.py;h=b0ff707f0fd1f8f755adc89a19513313291aff66;hb=4b6622264b59de3edb433a1f886faa2069a11960;hp=6b152c8bf6769905a6ec5ff7943e039dfcd88b2a;hpb=c11d3ba1151e7a5fd77f3c8334bc4fb7ff551339;p=myslice.git diff --git a/ui/topmenu.py b/ui/topmenu.py index 6b152c8b..b0ff707f 100644 --- a/ui/topmenu.py +++ b/ui/topmenu.py @@ -39,6 +39,7 @@ def topmenu_items_static (current, request): # looks like this is accessible to non-logged users result.append({'label':'Platforms', 'href': '/portal/platforms/'}) result.append({'label':'Register', 'href': '/portal/register/'}) + result.append({'label':'Join us', 'href': '/portal/join/'}) result.append({'label':'Contact Support', 'href': '/portal/contact/'}) # mark active if the provided 'current', even if shorter, matches the beginning of d['label'] @@ -69,7 +70,7 @@ from plugins.topmenuvalidation import TopmenuValidation # for asynchronous management of topmenu def topmenu_items_live (current, page): request=page.request - query_pi_auths = Query.get('ple:user').filter_by('user_hrn', '==', '$user_hrn' ).select('pi_authorities') + query_pi_auths = Query.get('user').filter_by('user_hrn', '==', '$user_hrn' ).select('pi_authorities') page.enqueue_query(query_pi_auths) # # even though this plugin does not have any html materialization, the corresponding domid # # must exist because it is searched at init-time to create the JS plugin @@ -81,7 +82,7 @@ def topmenu_items_live (current, page): query=query_pi_auths, # this one is the target for a $.show() when the query comes back button_domid="topmenu-validation") - # although the result does not matter, rendering is required for the JS init code to make it in the page + # although the result does not matter, rendering is required for the JS init code to make it in the page topmenuvalidation.render(request) return topmenu_items_static (current, request)