├── .gitignore ├── MANIFEST.in ├── README.rst ├── menu ├── __init__.py ├── admin.py ├── apps.py ├── locale │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_Hans │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── migrations │ ├── 0001_initial.py │ ├── 0002_booleandefaults.py │ └── __init__.py ├── models.py ├── south_migrations │ ├── 0001_initial.py │ ├── 0002_auto__add_field_menuitem_anonymous_only.py │ └── __init__.py ├── templatetags │ ├── __init__.py │ └── menubuilder.py └── views.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dist 3 | django_helpdesk.egg-info 4 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/README.rst -------------------------------------------------------------------------------- /menu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/__init__.py -------------------------------------------------------------------------------- /menu/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/admin.py -------------------------------------------------------------------------------- /menu/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/apps.py -------------------------------------------------------------------------------- /menu/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /menu/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /menu/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /menu/locale/zh_Hans/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/locale/zh_Hans/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /menu/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/migrations/0001_initial.py -------------------------------------------------------------------------------- /menu/migrations/0002_booleandefaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/migrations/0002_booleandefaults.py -------------------------------------------------------------------------------- /menu/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /menu/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/models.py -------------------------------------------------------------------------------- /menu/south_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/south_migrations/0001_initial.py -------------------------------------------------------------------------------- /menu/south_migrations/0002_auto__add_field_menuitem_anonymous_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/south_migrations/0002_auto__add_field_menuitem_anonymous_only.py -------------------------------------------------------------------------------- /menu/south_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /menu/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /menu/templatetags/menubuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/menu/templatetags/menubuilder.py -------------------------------------------------------------------------------- /menu/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossp/django-menu/HEAD/setup.py --------------------------------------------------------------------------------