Files
openlayers/master/examples/gallery.html
Éric Lemoine 5d14b9e2d4 Updated
2013-02-20 10:38:25 +01:00

16 lines
536 B
HTML

{% load dojox.dtl.contrib.data %}
{% bind_data items to store as flickr %}
<div>
Type a tag and press enter: <input dojoAttachEvent="onkeypress: keyUp" value="beach">
<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>