Edit basic details of request

<%= error_messages_for 'info_request' %> <% form_tag '../update/' + @info_request.id.to_s do %>

(warning: editing this will break URLs right now)
<%= text_field 'info_request', 'title', :size => 50 %>

(whether is shown in lists of requests / search or not)
<%= select( 'info_request', "prominence", { "normal" => "normal", "backpage" => "backpage"}) %>

(by email; use this on requests getting spam, but also work out how the email leaked and plug it)
<%= select('info_request', "stop_new_responses", [["Yes - stop new responses",true],["No - allow new responses",false]]) %>

(don't forget to change 'awaiting description' below too if necessary)
<%= select( 'info_request', "described_state", [ 'waiting_response', 'waiting_clarification', 'gone_postal', 'not_held', 'rejected', 'successful', 'partially_successful', 'internal_review', 'error_message', 'requires_admin', 'user_withdrawn' ]) %>


<%= select('info_request', "awaiting_description", [["Yes - needs state updating",true],["No - state is up to date",false]]) %>

<%= submit_tag 'Save changes', :accesskey => 's' %>

Note: To edit the actual request body text, click edit next to the specific outgoing message.

<% end %>

<%= link_to 'Show', '../show/' + @info_request.id.to_s %> | <%= link_to 'List all', '../list' %>


<% form_tag '../fully_destroy/' + @info_request.id.to_s do %>

This is permanent and irreversible! <%= submit_tag 'Destory request entirely' %>
Use it mainly if someone posts private information, e.g. made a Data Protection request. It destroys all responses and tracks as well.

<% end %>