I have a page which has Images in many_many
relation.
How to get images with original dimensions?
I'm using below code
<code><% loop Images %>
$SetSize(250,250)
<% end_loop %></code>
I have a page which has Images in many_many
relation.
How to get images with original dimensions?
I'm using below code
<code><% loop Images %>
$SetSize(250,250)
<% end_loop %></code>
$Me
is how you access the current item of the loop (it's a bit like$this
in PHP).Another way would be
$forTemplate
, but that's a bit inelegant.