%= form_tag url_for(:action => 'search') %>
<%= text_field_with_auto_complete :filter,:x %>
<%= submit_tag label="Search" %>
ON:
<% @model.find_all { |uri,b| !(uri=~/rdf/) }.each { |a,b| %>
!<%= b.to_s %>
<% } %>
OFF:
<% @model.find_all { |uri,b| (uri=~/rdf/) }.each { |a,b| %>
!<%= b.to_s %>
<% } %>
<% @model.each_value { |res| %>
- <%= link_to res.to_s, { :action => "show",:uri => res.rdf_uri }, :popup => false %>
<%}%>