8 lines
174 B
Plaintext
8 lines
174 B
Plaintext
|
<ul>
|
||
|
<% if @items.empty? -%>
|
||
|
<li><strong>Ohtehnoz! No maches found!</strong></li>
|
||
|
<% else -%>
|
||
|
<%= @items.collect { |x| "<li>#{x.send(@value)}</li>" } %>
|
||
|
<% end -%>
|
||
|
</ul>
|