X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fsliceview.py;h=91d60ef30aae9fb1d48ab48c521e2190fd45906c;hb=7ad1e085bc705fddbf06357582afd42d03f4e5da;hp=ff4cc5e5df3e1b296bf17f0a291069343afe1c83;hpb=04ea5e29850e650e370b7815c491f3538b442d9e;p=myslice.git diff --git a/portal/sliceview.py b/portal/sliceview.py index ff4cc5e5..91d60ef3 100644 --- a/portal/sliceview.py +++ b/portal/sliceview.py @@ -10,7 +10,7 @@ from manifold.manifoldapi import execute_query from ui.topmenu import topmenu_items, the_user -from plugins.validatebutton import ValidateButton +from plugins.topmenuvalidation import TopmenuValidation from plugins.raw import Raw from plugins.stack import Stack from plugins.tabs import Tabs @@ -428,14 +428,15 @@ class SliceView (LoginRequiredAutoLogoutView): # 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 # so we simply piggy-back the target button here - validatebutton = ValidateButton (page=page, - # see above - domid='topmenu-validation', - query=query_pi_auths, - # this one is the target for a $.show() when the query comes back - button_domid="topmenu-validation") + topmenuvalidation = TopmenuValidation ( + page=page, + # see above + domid='topmenu-validation', + 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 - validatebutton.render(request) + topmenuvalidation.render(request) # end topmenu addition # variables that will get passed to the view-unfold1.html template