Hi
I am using this code to create a crude grid of images with links:
{{for a in adverts:}}
{{=A(IMG(_src=URL('static', 'images/ads/' + a.advert.thumbnail),
_alt="My Logo"),
_href=URL('default','index'))}}
This renders as:
<a href="/test2/default/index"><img alt="My Logo"
src="/test2/static/images/ads/jamie.jpg" /></a>
Shows up fine in IE9 but doesnt in Firefox 10. If I go to the address of
the image directly by putting it in the address bar
(http://127.0.0.1:8000/test2/static/images/ads/jamie.jpg), it works.. the
image appears. It just doesnt appear in my firefox page when generated with
the python code above.
Can anyone shed any light?