X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ui%2Ftopmenu.py;h=1fc3b4b2d03e0ac3ba4f587e7d022515985eabdd;hb=fd13b08e5ae01e312431803eb1faf38a1589c4b9;hp=bdee674d5fa9547bbbad711d09112cc842d102ad;hpb=fea9b7e286cc86f11844e371d67d184198afc287;p=myslice.git diff --git a/ui/topmenu.py b/ui/topmenu.py index bdee674d..1fc3b4b2 100644 --- a/ui/topmenu.py +++ b/ui/topmenu.py @@ -15,7 +15,9 @@ def topmenu_items (current,request=None): if has_user: result.append({'label':'Dashboard', 'href': '/portal/dashboard/'}) result.append({'label':'Request a slice', 'href': '/portal/slice_request/'}) + result.append({'label':'Validation', 'href': '/portal/validate/'}) dropdown = [] + dropdown.append({'label':'Platforms', 'href': '/portal/platforms/'}) dropdown.append({'label':'My Account', 'href': '/portal/account/'}) dropdown.append({'label':'Contact Support', 'href': '/portal/contact/'}) result.append({'label': 'More', 'href':"#", 'dropdown':True, 'contents':dropdown}) @@ -30,12 +32,14 @@ def topmenu_items (current,request=None): if current is not None: current=current.lower() curlen=len(current) - def mark_active(d): - if d['label'][:curlen].lower() == current: d['is_active']=True + def mark_active(d,up=None): + if d['label'][:curlen].lower() == current: + d['is_active']=True + if up is not None: up['is_active']=True for d in result: mark_active(d) if 'dropdown' in d: - for dd in d['contents']: mark_active(dd) + for dd in d['contents']: mark_active(dd,d) return result def the_user (request):