Installing django-simple-menu¶
Install
django-simple-menuusing pip:pip install django-simple-menu
Add
simple_menuto yourINSTALLED_APPSlist in your settingsdjango-simple-menurequires that therequestobject be available in the context when you call the{% generate_menu %}template tag. This means that you need to ensure that yourTEMPLATE_CONTEXT_PROCESSORSsetting includesdjango.core.context_processors.request, which it doesn’t by default.