Metadata-Version: 1.1
Name: accordion-presentation
Version: 0.1
Summary: It is a simple horizontal accordion for django cms
Home-page: http://github.com/luisza/accordion_presentation
Author: Luisza
Author-email: luisza14@gmail.com
License: GPLv2
Description: accordion presentation
        ======================
        
        It is a simple horizontal accordion for django cms 
        
        
        Installation
        -----------------------
        
        Not pypi version yet, clone de repository 
        
            $ git clone https://github.com/luisza/accordion_presentation.git
        
        Please read https://github.com/mlavin/django-responsive
        
        And put in your apps
        
            INSTALLED_APPS = (
                ...
                'accordion_presentation',
            )
        
        Put in middleware 
        
            MIDDLEWARE_CLASSES = (
                ...
                'responsive.middleware.DeviceInfoMiddleware',
            )
        
        Put in template context processors:
        
            TEMPLATE_CONTEXT_PROCESSORS = (
                ...,
                 'responsive.context_processors.device_info',
            )
        
        Run syncdb
        
            $ python manage.py syncdb
            $ python manager.py migrate --fake
        
        
Keywords: tab django cms django-cms plugin
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
