<%= form_tag(pool_element_path, :class => "simple_form") do %> <%= hidden_field_tag "post_id", @post.id %>
<%= select_tag "pool_id", options_for_select([["", ""]] + Pool.options) %>
<%= text_field_tag "pool_name", "", :size => 20 %> Type the first two characters of a pool name
<%= submit_tag "Select" %>
<% end %> <% if recent_updated_pools.any? %>

Recent Pools

    <% recent_updated_pools.each do |pool| %>
  • <%= pool.name %>
  • <% end %>
<% end %>