I'm having a problem with an ImageField in one of my models. It is set to blank=True, null=True (it is optional.)

When I loop through a list of objects and use object.thumbnail.url, I get "Caught an exception while rendering: The 'thumbnail' attribute has no file associated with it."

This only happens if no thumbnail has been uploaded, obviously.

Does anyone have any ideas on the best way to deal with that?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Turned out it was as simple as:

{% if object.thumbnail %}
    <img src="{{ object.thumbnail.url }}" />
{% endif %}
link|improve this answer
weird. i thought template vars were supposed to fail silently. – Brandon H Nov 13 '09 at 19:19
Me too, that's what threw me! – John McCollum Nov 13 '09 at 20:26
feedback

Your Answer

 
or
required, but never shown

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