What's the best way to show the image of a Dexterity-based Plone content type in a listing view?

Say I have a folder with Dexterity-based content objects that provide an image field and I want to list the objects (as catalog brains) together with their image. It is possible to show the images in the listing by calling their absolute URL:

<img src="" tal:attributes="src string:${item/getURL}/@@images/image/thumb" />

Though, Plone will raise an error if the image does not exist and I don't see a good way to check if the image exists in a page template. We obviously do not want to wake up the objects for a listing, to look up the image.

Do I have to create an image metadata column in the catalog or is there a better solution I don't see?

link|improve this question
I had a similar question and i got those answers. usarios-plone.2295514.n2.nabble.com/… – user1162968 Feb 20 at 2:01
feedback

3 Answers

up vote 5 down vote accepted

I wouldn't worry too much about waking up objects in a listing as long as it's properly batched. If you're using the fields from plone.app.textfield and plone.namedfile then large data is kept in separate persistent objects, so the main content item object is relatively lightweight. Of course, do your own benchmarking if you want to be sure it doesn't hurt for your case.

link|improve this answer
Right, I forgot that the image data for blobs is stored separately anyway. – tisto Sep 21 '11 at 7:16
feedback

There is a recipe for how to do this in Professional Plone 4 Development (chapter 10, I believe). Unfortunately, I genuinely can't remember how to do it right now. :)

link|improve this answer
Thanks for the hint! I will have a look and paste the answer here. – tisto Sep 20 '11 at 15:34
Please, be sure to not post any copyrighted material here. Provide your own answer to the question. – zedr Sep 21 '11 at 8:24
zedr - I wrote that book, and I won't post materials from it directly. I just wanted to provide Timo with an answer even if I didn't have time to look it up. – optilude Oct 2 '11 at 13:02
feedback

Create a metadata in portal_catalog where you will store a path to a valid image. Create a python script of the same name that will check if the object has an image and in the case there is no image, return a default one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.