Example #1
0
def explorer_nav(context):
    return {
        'nodes': get_navigation_menu_items(context['request'].user)
    }
Example #2
0
def explorer_nav(context):
    return {'nodes': get_navigation_menu_items(context['request'].user)}
Example #3
0
def explorer_nav(request):
    return render(request, 'wagtailadmin/shared/explorer_nav.html', {
        'nodes': get_navigation_menu_items(request.user),
    })
Example #4
0
def explorer_nav(request):
    return render(request, 'wagtailadmin/shared/explorer_nav.html', {
        'nodes': get_navigation_menu_items(request.user),
    })
Example #5
0
def explorer_nav(request):
    return render(request, "wagtailadmin/shared/explorer_nav.html", {"nodes": get_navigation_menu_items(request.user)})