<% if @is_owning_user %> <% form_for(:incoming_message, @info_request, :url => describe_state_url(:id => @info_request.id)) do |f| %>

What is the status of this request now?

<%= radio_button "incoming_message", "described_state", "waiting_response", :id => 'waiting_response' + id_suffix %>
<%= radio_button "incoming_message", "described_state", "waiting_clarification", :id => 'waiting_clarification' + id_suffix %>
<%= radio_button "incoming_message", "described_state", "not_held", :id => 'not_held' + id_suffix %>
<%= radio_button "incoming_message", "described_state", "rejected", :id => 'rejected' + id_suffix %>
<%= radio_button "incoming_message", "described_state", "successful", :id => 'successful' + id_suffix %>
<%= radio_button "incoming_message", "described_state", "partially_successful", :id => 'partially_successful' + id_suffix %>
<%= radio_button "incoming_message", "described_state", "requires_admin", :id => 'requires_admin' + id_suffix %>

Filling this in each time you get a new response helps us track the progress of your request.

<%= hidden_field_tag 'last_info_request_event_id', @last_info_request_event_id, :id => 'last_info_request_event_id' + id_suffix %> <%= hidden_field_tag 'submitted_describe_state', 1, :id => 'submitted_describe_state' + id_suffix %> <%= submit_tag "Next" %>

<% end %> <% else %> We don't know whether the most recent response to this request contains information or not – if you are <%= user_link(@info_request.user) %>, please <%= link_to "sign in", signin_url(:r => request.request_uri) %> and let everyone know. <% end %>