Metadata-Version: 1.1
Name: redsolutioncms.django-menu-proxy
Version: 0.1.2
Summary: MenuProxy allows you to build dynamic menu on site using different models.
For example, you can combine flatpages, hardlinked views and news sorted by date
in site menu. Menu will be updated dynamically, respectively, the structure of objects.
Home-page: http://packages.python.org/django-menu-proxy
Author: Alexander Ivanov
Author-email: alexander.ivanov@redsolution.ru
License: GPLv3
Description: =================
        django-menu-proxy
        =================
        
        Allow you to build different menus and breadcrumbs over objects with differect types on your site.
        
        Installation:
        =============
        
        In settings.py:
        ---------------
        
        1. Add ``menuproxy`` to your ``INSTALLED_APPS``.
        
        2. Set ``MENU_PROXY_SETTINGS`` variable. To learn about how to use it read source code of example project.
        
        Usage:
        ======
        
        In your templates:
        ------------------
        
        1. Load ``menuproxy_tags`` templatetag::
        
            {% load menuproxy_tags %}
        
        2. To show menu use::
        
            {% show_main_menu <rule> <object> %}
        
        or::
        
            {% show_full_menu <rule> <object> %}
        
        or::
        
            {% show_auto_menu <rule> <object> %}
        
        3. To show breadcrumbs use::
        
            {% show_breadcrumbs <rule> <object> %}
        
        To learn more about usage read source code of example project.
        
        History:
        ========
        
        * 0.1.0 - First release
        
        * 0.1.1 - Fixed old tag pop_breadcrumb
        
        
Keywords: django menu
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Framework :: Django
Classifier: Environment :: Web Environment
Classifier: Natural Language :: Russian
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
