aldryn-quote
March 5, 2016 ยท View on GitHub
Easy to use quote plugin for Aldryn Cloud and django CMS.
Requirements
- Django 1.7 or higher
- django CMS 3.0 or higher
Installation
-
Run the following commands in the given order:
pip install -e git+https://github.com/philipp-x/aldryn-quote#egg=aldryn-quote -
Add
aldryn_quoteto yourINSTALLED_APPS:# settings.py INSTALLED_APPS += [ 'aldryn_quote', ] -
To sync the
aldryn-quotemodels to the database run:python manage.py migrate aldryn_quote
Additional style choices
-
Within the
templates/aldryn_quote/pluginsfolder, create a subfolder with a name of your choice. -
Make sure your template is called
quote.htmland copy it to the subfolder created in step 1. -
Add the name of your subfolder to a tuple called
QUOTE_STYLES:# settings.py QUOTE_STYLES = ( 'subfolder', )