summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-09-27 09:56:18 +0200
committerYorhel <git@yorhel.nl>2020-09-27 09:56:44 +0200
commitde55cab43839822ed4423ba898f63e829447b293 (patch)
treec7bd7bbf714e7185aff9ee6fc0d9acb7bea38dbf /lib
parent9854508668f1cc9d6a0f8a88cc70d961ebb9d556 (diff)
TagEdit: Re-add message about moderator approval
Diffstat (limited to 'lib')
-rw-r--r--lib/VNWeb/Tags/Edit.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/VNWeb/Tags/Edit.pm b/lib/VNWeb/Tags/Edit.pm
index a337192c..3f1a468d 100644
--- a/lib/VNWeb/Tags/Edit.pm
+++ b/lib/VNWeb/Tags/Edit.pm
@@ -67,6 +67,19 @@ TUWF::get qr{/(?:$RE{gid}/add|g/new)}, sub {
}
framework_ title => 'Submit a new tag', sub {
+ div_ class => 'mainbox', sub {
+ h1_ 'Requesting new tag';
+ div_ class => 'notice', sub {
+ h2_ 'Your tag must be approved';
+ p_ sub {
+ txt_ 'All tags have to be approved by a moderator, so it can take a while before it will show up in the tag list'
+ .' or on visual novel pages. You can still vote on the tag even if it has not been approved yet.';
+ br_;
+ br_;
+ txt_ 'Make sure you\'ve read the '; a_ href => '/d10', 'guidelines'; txt_ ' to increase the chances of getting your tag accepted.';
+ }
+ }
+ } if !auth->permTagmod;
elm_ TagEdit => $FORM_OUT, $e;
};
};