diff options
Diffstat (limited to 'app/views/request/_followup.rhtml')
-rw-r--r-- | app/views/request/_followup.rhtml | 39 |
1 files changed, 29 insertions, 10 deletions
diff --git a/app/views/request/_followup.rhtml b/app/views/request/_followup.rhtml index 87b1bde82..fe16ff33b 100644 --- a/app/views/request/_followup.rhtml +++ b/app/views/request/_followup.rhtml @@ -1,11 +1,11 @@ <div id="followup"> <% if incoming_message.nil? || !incoming_message.valid_to_reply_to? %> - <h2>Send a follow up message + <h2>Send a public follow up message to '<%=h RequestMailer.name_for_followup(@info_request, nil) %>' </h2> <% else %> - <h2>Send a reply to <%=h RequestMailer.name_for_followup(@info_request, incoming_message) %> + <h2>Send a public reply to <%=h RequestMailer.name_for_followup(@info_request, incoming_message) %> </h2> <% end %> @@ -14,14 +14,13 @@ <a href="/help/contact">contact us</a> if you are <%= user_link(@info_request.user) %> and need to send a follow up.</p> <% else %> - <p>Use this to tell the public authority something, such as to clarify - your request, or if they are late responding.</p> - <p>Please do <strong>not</strong> make new requests here. +<!-- <p>Please do <strong>not</strong> make new requests here. If you are asking for information which was not in your original request, then <%= link_to "file a new request", new_request_to_body_url(:public_body_id => @info_request.public_body.id.to_s) %> instead. </p> + --> <% if @info_request.calculate_status == 'waiting_response_overdue' %> <p>This request is currently <strong>overdue a response</strong> from <%= @@ -39,11 +38,31 @@ <%= o.text_area :body, :rows => 10, :cols => 55 %> <br><script type="text/javascript">document.write('<input name="doSpell" type="button" value="Check spelling" onClick="openSpellChecker(document.getElementById(\'followup_form\').body);"/> (optional)')</script> </p> - - <p> - <strong>Privacy warning:</strong> Your follow up message, and any response - to it, will also be displayed publicly on this website. - </p> + + <h3>What are you doing?</h3> + + <% if !@outgoing_message.errors[:what_doing_dummy].nil? %> + <div class="fieldWithErrors"> + <% else %> + <div> + <% end %> + <!-- + <div> + <%= radio_button "outgoing_message", "what_doing", "new_information", :id => "new_information" %> + <label for="new_information">I am asking for <strong>new information</strong> </label> + </div> + --> + <div> + <%= radio_button "outgoing_message", "what_doing", "internal_review", :id => "internal_review" %> + <label for="internal_review">I am requesting an <strong>internal review</strong> + (<a href="/help/unhappy">what's that?</a>) + </label> + </div> + <div> + <%= radio_button "outgoing_message", "what_doing", "normal_sort", :id => "sort_normal" %> + <label for="sort_normal"><strong>Anything else</strong>, such as clarifying, prompting, thanking</label> + </div> + </div> <p> <%= hidden_field_tag 'submitted_followup', 1 %> |