summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-07-26 07:42:29 +0200
committerYorhel <git@yorhel.nl>2020-07-26 07:42:29 +0200
commit342dc200ffa2bdec5243e966c988843805397f1b (patch)
tree83bebddfa4d7c816923ac7d8f29b1fab7133f7b7
parente37e6be169d0fd3ce1d49b9466a54cad59083efd (diff)
Reports: Add a "Missing information" option
-rw-r--r--elm/Report.elm12
1 files changed, 12 insertions, 0 deletions
diff --git a/elm/Report.elm b/elm/Report.elm
index e9ae59de..0bb48b50 100644
--- a/elm/Report.elm
+++ b/elm/Report.elm
@@ -90,6 +90,18 @@ reasons =
, text " so that others may be able to help you."
]
}
+ , { label = "Missing information"
+ , vis = \t o -> t == "db" && not (String.startsWith "d" o)
+ , submit = False
+ , msg = \_ o ->
+ [ text "VNDB is an open wiki, you can add any missing information to this database yourself. "
+ , text "You likely know more about this entry than our moderators, after all. "
+ , br [] []
+ , text "If you need help with contributing information, feel free to ask around on the "
+ , a [ href "/t/db" ] [ text "discussion board" ]
+ , text "."
+ ]
+ }
, { label = "Not a visual novel"
, vis = \t o -> t == "db" && String.startsWith "v" o
, submit = False