Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 925 Bytes

README.rst

File metadata and controls

35 lines (23 loc) · 925 Bytes

Bootstrap carousel plugin for Django CMS

This plugin lets you easily add carousel components (ie. slideshows) into django-cms pages using Bootstrap.

Requirements

Installation

To use it into your project, just follow this procedure:

  1. Open the settings.py file and add cmsplugin_bootstrap_carousel to the INSTALLED_APPS variable

  2. Run the following command:

    $ ./manage.py syncdb
    

Images embedded into carousels are automaticaly resized. The default size is 800x600. To change it, define the following variable into your configuration file:

BOOTSTRAP_CAROUSEL_IMGSIZE = (1024, 768)

Note

Bootstrap is not included with this plugin.