diff options
Diffstat (limited to 'app/views/request/_classify.rhtml')
-rw-r--r-- | app/views/request/_classify.rhtml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/request/_classify.rhtml b/app/views/request/_classify.rhtml new file mode 100644 index 000000000..cf27d734c --- /dev/null +++ b/app/views/request/_classify.rhtml @@ -0,0 +1,15 @@ +<% 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> + + <%= submit_tag "Update" %> + +<% end %> + |