diff options
| author | rr- <rr-@sakuya.pl> | 2017-03-30 20:50:12 +0200 |
|---|---|---|
| committer | rr- <rr-@sakuya.pl> | 2017-03-30 20:50:12 +0200 |
| commit | 77bf3bdc3c0c1b9e5746e0f3f63281360c3e5a03 (patch) | |
| tree | bd2a8cdf7cb5d2b099191d3ef68648bebdd70c35 /client/html/posts_header.tpl | |
| parent | c2be365b6e8f4ffe1f3156c0e2e8b553d000cdfd (diff) | |
client/posts: add option to disable safety ratings
Diffstat (limited to 'client/html/posts_header.tpl')
| -rw-r--r-- | client/html/posts_header.tpl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/client/html/posts_header.tpl b/client/html/posts_header.tpl index 29efd52..e0ba0ea 100644 --- a/client/html/posts_header.tpl +++ b/client/html/posts_header.tpl @@ -4,9 +4,11 @@ %><wbr/><% %><input class='mousetrap' type='submit' value='Search'/><% %><wbr/><% - %><input data-safety=safe type='button' class='mousetrap safety safety-safe <%- ctx.settings.listPosts.safe ? '' : 'disabled' %>'/><% - %><input data-safety=sketchy type='button' class='mousetrap safety safety-sketchy <%- ctx.settings.listPosts.sketchy ? '' : 'disabled' %>'/><% - %><input data-safety=unsafe type='button' class='mousetrap safety safety-unsafe <%- ctx.settings.listPosts.unsafe ? '' : 'disabled' %>'/><% + %><% if (ctx.enableSafety) { %><% + %><input data-safety=safe type='button' class='mousetrap safety safety-safe <%- ctx.settings.listPosts.safe ? '' : 'disabled' %>'/><% + %><input data-safety=sketchy type='button' class='mousetrap safety safety-sketchy <%- ctx.settings.listPosts.sketchy ? '' : 'disabled' %>'/><% + %><input data-safety=unsafe type='button' class='mousetrap safety safety-unsafe <%- ctx.settings.listPosts.unsafe ? '' : 'disabled' %>'/><% + %><% } %><% %><wbr/><% %><a class='mousetrap button append' href='<%- ctx.formatClientLink('help', 'search', 'posts') %>'>Syntax help</a><% %></form><% @@ -20,7 +22,7 @@ %><a href class='mousetrap button append close'>Stop tagging</a><% %></form><% %><% } %><% - %><% if (ctx.canBulkEditSafety) { %><% + %><% if (ctx.enableSafety && ctx.canBulkEditSafety) { %><% %><form class='horizontal bulk-edit bulk-edit-safety'><% %><a href class='mousetrap button append open'>Mass edit safety</a><% %><a href class='mousetrap button append close'>Stop editing safety</a><% |