I'm having trouble with the src attribute of the <img> tags being empty in the gallery detail view which is supposed to load in the template via: photo.get_thumbnail_url
The links to the photo detail template works fine which loads in the template via: photo.get_absolute_url
From the photo_detail there is also a link in the template from : href="{{ photo.get_absolute_url }}" which gets me to the actual image file thats working as expected.
I'm assuming the correct dependencies where given in the docs which don't include easy-thumnails
From Googling I've gathered photologue used to require easy-thumbnails
I'm assuming the photo.get_thumbnail_url should work with the dependencies described in the most recent docs and that this get_thumbnail_url is an analogous method that doesn't require easy-thumbnails ... is that right?
I also read about potential problems with Pillow and thought maybe scaling the images was failing to create the thumbnails but I've installed Pillow on OSX and CentOS7 without any apprent installation issues (
from PIL import Image woprks fine ) and am observing the exact same behavior.
I've gathered from something I read you need to define some photo sizes for the templates to work right although I don't see any mention of this in the docs.
I've got one called 'display' and one called 'admin_thumbnail' which I got from googling around.
I read the previous post here on this Google group and am not having trouble with my MEDIA_URL setting as far as I can see
I'm using default settings:
STATIC_URL = '/static/'
MEDIA_URL = '/media/'
Does anyone have any idea what can explain this behavior?
Does anyone know if there are going to be issues with PIL on CentOS7?
I'd prefer to know before getting locked into a hosting plan.
Best
Doug