diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/request/new_report_request.html.erb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/views/request/new_report_request.html.erb b/app/views/request/new_report_request.html.erb new file mode 100644 index 000000000..7f815344c --- /dev/null +++ b/app/views/request/new_report_request.html.erb @@ -0,0 +1,22 @@ +<h1>Report request: <%= @info_request.title %></h1> + +<p> + Reporting a request notifies the site administrators. They will respond as soon as possible. +</p> +<p>Why specifically do you consider this request unsuitable?</p> + +<%= form_tag report_path(:url_title => @info_request.url_title) do %> + <p> + <label class="form_label" for="reason">Reason:</label> + <%= select_tag :reason, options_for_select(["Contains defamatory material", "Not a valid request", "Request for personal information", "Contains personal information", "Vexatious", "Other"]), :prompt => "Choose a reason" %> + </p> + <p> + <label class="form_label" for="message">Please tell us more:</label> + <%= text_area_tag :message, "", :rows => 10, :cols => 60 %> + </p> + + <div class="form_button"> + <%= submit_tag _("Report request") %> + </div> + +<% end %> |