From: Thierry Parmentelat Date: Fri, 11 Oct 2013 19:22:37 +0000 (+0200) Subject: topmenu without a dropdown for now, as this is broken X-Git-Tag: myslice-0.2-5~12^2~1 X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=commitdiff_plain;h=3cbd1a536e44bed0fecce6a7d0be57b2c6d03748 topmenu without a dropdown for now, as this is broken --- diff --git a/ui/topmenu.py b/ui/topmenu.py index bcf74b1c..72904f9b 100644 --- a/ui/topmenu.py +++ b/ui/topmenu.py @@ -11,14 +11,16 @@ def topmenu_items (current,request=None): has_user=request.user.is_authenticated() result=[] if has_user: - result.append({'label':'Platforms', 'href': '/portal/platforms/'}) result.append({'label':'Dashboard', 'href': '/portal/dashboard/'}) - # This should probably go in dashboard at some point - dropdown = [] - dropdown.append({'label':'Request a slice', 'href': '/portal/slice_request/'}) - 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}) + result.append({'label':'Request a slice', 'href': '/portal/slice_request/'}) + result.append({'label':'My Account', 'href': '/portal/account/'}) + result.append({'label':'Contact Support', 'href': '/portal/contact/'}) +# Not really useful at this point, is it ? +# This should probably go into dashboard at some point +# result.append({'label':'Platforms', 'href': '/portal/platforms/'}) +# the code for building a dropdown instead - but somehow this is broken +# dropdown = [ {'label':'..', 'href': '..'}, ...] +# result.append({'label': 'More', 'href':"#", 'dropdown':True, 'contents':dropdown}) else: result.append({'label':'Home', 'href': '/login'}) # looks like this is accessible to non-logged users