e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
16 lines
No EOL
479 B
HTML
16 lines
No EOL
479 B
HTML
{% load dojox.dtl.contrib.data %}
|
|
{% bind_data items to store as flickr %}
|
|
<div>
|
|
<input dojoAttachEvent="onkeypress: keyUp">
|
|
<table>
|
|
<tr>
|
|
{% for item in flickr %}<td><img src="{{ item.imageUrlThumb }}" dojoAttachEvent="onclick: selectThumbnail" class="{{ item.imageUrl }}" /></td>{% endfor %}
|
|
<td width="100%"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="{{ flickr|length|add:1 }}">
|
|
{% if selected %}<img src="{{ selected }}" />{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div> |