Добрый день!
Поставил пакет easy_thumbnails. Подключил в INSTALLED_APPS.
При makemigrations вылетает предупреждение:
?: (1_8.W001) The standalone TEMPLATE_* settings were deprecated in
Django 1.8 and the TEMPLATES dictionary takes precedence. You must put
the values of the following settings into your default TEMPLATES dict:
TEMPLATE_DIRS.
Django 1.10
кусок settings.py
#--------------------------------------------------------------------------
TEMPLATE_DIRS = (os.path.join(BASE_DIR, '../media/templates'),)
# Images
THUMBNALL_BASEDIR = (os.path.join(BASE_DIR, '../media/templates/thumbnails/'),)
THUMBNAIL_NAMER = 'easy_thumbnails.namers.hashed'
THUMBNAIL_PROCESSORS = (
'easy_thumbnails.processors.colorspace',
'easy_thumbnails.processors.autocrop',
'easy_thumbnails.processors.scale_and_crop',
'easy_thumbnails.processors.filters',
'easy_thumbnails.processors.background',
)
Не вижу где косяк