Files
danbooru/app/views/iqdb_queries/create_by_url.html.erb
r888888888 42c9c71a5f fixes #3306
2017-11-17 14:29:59 -08:00

10 lines
268 B
Plaintext

<% if @results.any? %>
<h3>Similar</h3>
<% @results.each do |match| %>
<%= PostPresenter.preview(match[:post], :tags => "status:any", :size => true, :similarity => match[:score]) %>
<% end %>
<% else %>
<h3>Similar</h3>
<p>No matches found</p>
<% end %>