summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-08-05 15:30:33 +0200
committerYorhel <git@yorhel.nl>2020-08-05 15:33:59 +0200
commitedafe9114befd3df40007a1a8fe48b69a0387eff (patch)
tree8712d28c80b06afbd3a540e1aea855988e3a5b06
parentc5d0b1a92b301dde6df1ee707304685874131d8a (diff)
Reports: Give the "Other" reason a warning message, too
Still getting rather many reports for issues that do not require moderator action.
-rw-r--r--elm/Report.elm12
1 files changed, 11 insertions, 1 deletions
diff --git a/elm/Report.elm b/elm/Report.elm
index 0bb48b50..c3254397 100644
--- a/elm/Report.elm
+++ b/elm/Report.elm
@@ -126,7 +126,17 @@ reasons =
, { label = "Other"
, vis = vis
, submit = True
- , msg = nomsg
+ , msg = \t o ->
+ if t == "db" && not (String.startsWith "d" o)
+ then [ text "Keep in mind that VNDB is an open wiki, you can edit most of the information in this database."
+ , br [] []
+ , text "Reports for issues that do not require a moderator to get involved will most likely be ignored."
+ , br [] []
+ , text "If you need help with contributing to the database, feel free to ask around on the "
+ , a [ href "/t/db" ] [ text "discussion board" ]
+ , text "."
+ ]
+ else []
}
]