philomena/lib/philomena_web/templates/report/new.html.slime

53 lines
1.6 KiB
Text
Raw Normal View History

2019-12-04 05:14:56 +01:00
h2 Submit a report
p
strong
2024-06-06 22:28:35 +02:00
= link_to_reported_thing(@reportable)
2019-12-04 05:14:56 +01:00
.image-other
.dnp-warning
h3 Reporting Tips
ul
li
' Make sure to report for the correct
= link "rule", to: "/pages/rules"
' .
2021-01-18 23:26:31 +01:00
li One report per problem. If it involves multiple things (images, comments, etc), list all of their IDs in the description of a single report.
2019-12-04 05:14:56 +01:00
li
strong Do not report someone just because they disagree with you. Abusing the report system is a bannable offense.
2021-01-18 23:26:31 +01:00
p
' You may only open up to
strong> 3 reports
' at a time. Please be mindful of what you report.
2019-12-04 05:14:56 +01:00
br
= if image?(@changeset) do
.dnp-warning
h3 Takedown Policy
p
strong> Only an owner of an image's rights (normally the artist) can request a takedown.
' If you're the artist, you'll
strong> need
' a verified artist link.
2019-12-04 05:14:56 +01:00
p
' For more information, please read the
= link "takedown policy", to: "/pages/takedowns"
' .
br
= if conversation?(@changeset) do
.dnp-warning
h3 Privacy note
p
' The whole conversation will be readable by site staff.
br
= form_for @changeset, @action, fn f ->
.field
= select f, :category, report_categories(), class: "input"
.block
= render PhilomenaWeb.MarkdownView, "_input.html", conn: @conn, f: f, placeholder: "Provide anything else we should know here.", name: :reason, required: false
2019-12-04 05:14:56 +01:00
2020-09-12 19:43:16 +02:00
= render PhilomenaWeb.CaptchaView, "_captcha.html", name: "report", conn: @conn
2019-12-04 05:14:56 +01:00
2020-09-12 19:43:16 +02:00
= submit "Send Report", class: "button"