diff options
Diffstat (limited to 'app/views/request/_classify.rhtml')
-rw-r--r-- | app/views/request/_classify.rhtml | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/app/views/request/_classify.rhtml b/app/views/request/_classify.rhtml deleted file mode 100644 index f48c53f3d..000000000 --- a/app/views/request/_classify.rhtml +++ /dev/null @@ -1,22 +0,0 @@ -<% form_for(:incoming_message, @info_request) do |f| %> - <h2>Got what you wanted?</h2> - <p>Does this response contain any of the information that you requested?</p> - <p> - <%= radio_button "incoming_message", "contains_information", "true" %> - <label for="incoming_message_contains_information_true">Yes, this response contains some or all of the information that I requested.</label> - <br> - <%= radio_button "incoming_message", "contains_information", "false" %> - <label for="incoming_message_contains_information_false">No, this response does not contain any of the information.</label> - </p> - - <%= hidden_field_tag 'submitted_classify', 1 %> - <%= submit_tag "Update" %> - - <p> - <% if not @is_owning_user %> - (You will be asked to sign in as <%= user_link(@info_request.user) %>) - <% end %> - </p> - -<% end %> - |