Make requests for information from the UK Government
<% if @public_bodies.size == 0 and @query_made %>
<% end %>
<% form_tag({:action => :frontpage}, :method => 'get', :id => 'public_body_form', :class => 'plaque' ) do %>
<%= text_field_with_auto_complete 'public_body', 'query', {}, { :skip_style => true, :frequency => 0.1,
:after_update_element =>
"function(element,value) {
parent.window.location = '/?public_body[query]=' + element.value
}"
} %>
Type to search e.g. Health, Business, Scotland
<%= submit_tag "Search" %>
<% if @public_bodies.size > 0 %>
Public authorities found
<% for public_body in @public_bodies %>
-
<%= link_to h(public_body.name), new_request_to_body_url(:public_body_id => public_body.id.to_s) %>
<% end %>
<% end %>
Can't find it? Browse all or ask us to add it.
<% end %>