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 %>

<%= select( 'info_request', "prominence", [ "normal", "backpage", "requester_only", "hidden" ]) %> (backpage means hidden from lists/search; hidden means completely hidden; super users can see anything)

<%= select( 'info_request', "allow_new_responses_from", [ "anybody", "authority_only", "nobody" ] ) %>; <%= select( 'info_request', "handle_rejected_responses", [ "bounce", "holding_pen", "blackhole" ] ) %>
('authority_only' means email From: domain of authority request email or any domain that has previously sent a response; 'nobody' also stops requester making followups; take care when using 'blackhole' which just drops mail)

<%= 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]]) %>
(don't forget to change 'awaiting description' when you set described state)


<%= text_field 'info_request', 'tag_string', :size => 60 %>

<%= 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 %>