diff options
author | FChannel <> | 2022-06-05 15:14:34 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | 3ac22385f2cb2256db718e47f5ae3c6d13353b70 (patch) | |
tree | 49f12c0cc52661f1fd6661baf2f77fbd5c7f71de /views/manage.html | |
parent | 0359d9d410b9ab597ed4a067d767ab59472b0c03 (diff) |
added janny managment for admin board pages
Diffstat (limited to 'views/manage.html')
-rw-r--r-- | views/manage.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/views/manage.html b/views/manage.html index da59340..e3c03a0 100644 --- a/views/manage.html +++ b/views/manage.html @@ -7,6 +7,9 @@ <li style="display: inline-block;">[<a href="#followers"> Subscribers </a>]</li> {{ end }} <li style="display: inline-block;">[<a href="#reported"> Reported </a>]</li> + {{ if eq .page.Board.ModCred "admin" }} + <li style="display: inline-block;">[<a href="#jannies"> Janitor Managment </a>]</li> + {{ end }} </ul> </div> [<a href="/{{ .page.Board.Name }}">Return</a>] @@ -59,6 +62,22 @@ </ul> </div> +{{ if eq .page.Board.ModCred "admin" }} +<div id="jannies" class="box2" style="margin-bottom: 25px; padding: 12px;"> + <h4 style="margin: 0; margin-bottom: 5px;">Janitor Managment</h4> + <form id="janny-form" action="/{{ .page.Key }}/{{ .page.Board.Name }}/addjanny" method="post" enctype="application/x-www-form-urlencoded" style="margin-top: 5px;"> + <input id="label" name="label" style="margin-bottom: 5px;" size="35" placeholder="Label i.e Janny Alias"></input> + <input type="submit" value="Add Janitor"><br> + <input type="hidden" name="actor" value="{{ $board.Actor.Id }}"> + </form> + <ul style="display: inline-block; padding: 0; margin: 0; list-style-type: none;"> + {{ range .jannies }} + <li>{{ .Label }} - <b>Login:</b> {{ .Identifier }} <b>Code:</b> {{ .Code }} <a href="/{{ $key }}/{{ $board.Name }}/deletejanny?code={{ .Code }}">[Revoke]</a></li> + {{ end }} + </ul> +</div> +{{ end }} + {{ template "partials/footer" .page }} {{ template "partials/general_scripts" .page }} |