{ "info": { "author": "Eka Putra", "author_email": "ekaputra@balitechy.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP" ], "description": "DJANGO MENUZ\n============\n\nDjango Menuz is another menu app for Django.\n\nIt mainly inspired by how easy menu creation ini WordPress. Django Menuz provides\ntemplate tags to call menu in specified location.\n\nWith it's drag and drop features, its easy to re-order the menu item position.\n\nINSTALLATION AND USAGE:\n-----------------------\nOnce you install it via setup.py, easy_install or pip.\n\n* Add ``menuz`` into your ``INSTALLED_APPS`` Django ``settings.py`` file.\n\n* Please make sure ``django.core.context_processors.request`` available in your ``TEMPLATE_CONTEXT_PROCESSORS``.\n\n* Also add url config below into projects urls configuration.\n ::\n \n url(r'', include('menuz.urls')),\n\n* Register all available menu positions in project ``settings.py`` by adding ``AVAILABLE_MENUS`` parameter. example:\n ::\n\n AVAILABLE_MENUS = (\n {\n 'id': 'top_menu',\n 'title': _('Top Menu'),\n 'type': 'UL', #optional, default UL. alternative 'OL'\n 'class': 'someclass', #optional, output: