<%= h(t.reports.wiki_images.name) %>

<%= h(t.reports.wiki_images.intro) %>

<% lastkey = '' @db.select("SELECT p.key, p.title, p.lang, i.width, i.height, i.image_url, i.thumb_url_prefix, i.thumb_url_suffix FROM wiki.wikipages p, wiki.wiki_images i WHERE i.image=p.image AND p.value IS NULL ORDER BY p.key, p.lang").execute() do |row| %> <% if lastkey != row['key'] lastkey = row['key'] %>
<% end %>
<%= row['lang'] %>
<% imagesize = 50 if row['width'].to_i <= imagesize && row['height'].to_i <= imagesize src = row['image_url'] else src = row['thumb_url_prefix'] + imagesize.to_s + row['thumb_url_suffix'] end %>
<% end %>