Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.65 KB

README.md

File metadata and controls

53 lines (37 loc) · 1.65 KB

cmsplugin-media-center

Build Status Coverage Status

This app needs:

They will be automatically installed so no worries.

SetUp

pip install git+git://github.com/MagicSolutions/cmsplugin-media-center.git --process-dependency-links

--process-dependency-links is added because of the django-orderedmodel package (it is good to be the one from the MagicSolution's organization)

You should have these in installed apps:

INSTALLED_APPS = (
    .....
    'easy_thumbnails',
    .....
    'filer',
    'cmsplugin_filer_file',
    'cmsplugin_filer_folder',
    'cmsplugin_filer_image',
    'cmsplugin_filer_teaser',
    .....
    'orderedmodel',
    'cmsplugin_media_center',
)

And these in THUMBNAIL_PROCESSORS:

THUMBNAIL_PROCESSORS = (
    'easy_thumbnails.processors.colorspace',
    'easy_thumbnails.processors.autocrop',
    'filer.thumbnail_processors.scale_and_crop_with_subject_location',
    'easy_thumbnails.processors.filters',
)

Run the migrations:

python manage.py migrate filer
python manage.py migrate cmsplugin_carousel

Andd off you go.

Demo