% if @is_owning_user || @requires_admin_describe %>
<% form_for(:incoming_message, @info_request, :url => describe_state_url(:id => @info_request.id)) do |f| %>
What best describes the status of this request now?
<% if @info_request.described_state != 'internal_review' %>
<%= radio_button "incoming_message", "described_state", "waiting_response", :id => 'waiting_response' + id_suffix %>
I'm still waiting for my information
(maybe you got an acknowledgement)
<% end %>
<% if @info_request.described_state == 'internal_review' %>
<%= radio_button "incoming_message", "described_state", "internal_review", :id => 'internal_review' + id_suffix %>
I'm still waiting for the internal review
<% end %>
<% if @info_request.described_state != 'internal_review' %>
<%= radio_button "incoming_message", "described_state", "waiting_clarification", :id => 'waiting_clarification' + id_suffix %>
I'm about to clarify my request
<% end %>
<%= radio_button "incoming_message", "described_state", "gone_postal", :id => 'gone_postal' + id_suffix %>
They are going to reply by post
<% if @info_request.described_state == 'internal_review' %>
The review has finished and overall:
<% end %>
<%= radio_button "incoming_message", "described_state", "not_held", :id => 'not_held' + id_suffix %>
They do not have the information (maybe they say who does)
<%= radio_button "incoming_message", "described_state", "partially_successful", :id => 'partially_successful' + id_suffix %>
I've received some of the information
<%= radio_button "incoming_message", "described_state", "successful", :id => 'successful' + id_suffix %>
I've received all the information
<%= radio_button "incoming_message", "described_state", "rejected", :id => 'rejected' + id_suffix %>
My request has been rejected
<%= radio_button "incoming_message", "described_state", "error_message", :id => 'error_message' + id_suffix %>
I've received an error message
<%= 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 "Submit status" %> (and we'll suggest what to do 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 %>