Metadata-Version: 1.1
Name: aldryn-quote
Version: 1.0.2
Summary: Easy to use quote plugin for Aldryn and django CMS.
Home-page: https://github.com/philipp-x/aldryn-quote
Author: Philipp Havrilla
Author-email: philipp.havrilla@bluewin.ch
License: BSD License
Description: aldryn-quote
        ============
        
        Easy to use quote plugin for Aldryn and django CMS.
        
        Installation
        ------------
        
        1. Run the following commands in the given order:
        
            ```bash
            pip install -e git+https://github.com/philipp-x/aldryn-quote#egg=aldryn-quote
            ```
        
        2. Add `aldryn_quote` to your `INSTALLED_APPS`:
        
            ```python
            # settings.py
            INSTALLED_APPS += [
                'aldryn_quote',
            ]
            ```
        
        3. Make sure `south` is installed. Run the following commands in the given order:
        
            ```bash
            python manage.py migrate aldryn_quote
            ```
        
        Additional style choices
        ------------------------
        
        1. Within the `templates/aldryn_quote/plugins` folder, create a subfolder with a name of your choice.
        
        2. Make sure your template is called `quote.html` and copy it to the subfolder created in step 1.
        
        3. Add the name of your subfolder to a tuple called `QUOTE_STYLES`:
        
            ```python
            # settings.py
            QUOTE_STYLES = (
                'subfolder',
            )
            ```
        
Platform: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
