How do I display thumbnails for my item list....also is it possible to display just a specific thumbnail or a random thumbnail? So far I have this in my template:

{% for p in item.images.all %}
   {{ p.get_thumbnail.url }}
{% endfor %}
link|improve this question

feedback

2 Answers

To display the image, you'll at least need to use an <img> tag:

 <img src="{{ p.thumbnail_image.url }}" alt="{{ p.name }}">
link|improve this answer
thanks...I knew something was wrong with my code. – Stephen Nov 28 '09 at 13:19
BTW...how do can I get four random pictures? – Stephen Dec 1 '09 at 15:19
feedback
up vote 0 down vote accepted

Just got an answer to the problem:

{% for p in item.images.all|slice:"4" %}
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.