This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
barleysodas/app/views/tag_images/_taggable_results.rhtml

11 lines
436 B
Plaintext

<% @results.keys.each do |ctype| -%>
<% next if @results[ctype].empty? -%>
<h3><%= ctype.pluralize -%></h3>
<p>
<%= @results[ctype].collect { |r| link_to_function((r.respond_to?(:name) ? r.name : r.title), "set_taggable_item(#{r.id}, '#{(r.respond_to?(:name) ? r.name : r.title)}', '#{ctype}');") }.join(', ') %>
</p>
<% end -%>
<% unless @results.detect { |key, val| !val.empty? } -%>
<small>No results found...</small>
<% end -%>