diff options
author | FChannel <> | 2021-05-30 21:40:04 -0700 |
---|---|---|
committer | FChannel <> | 2021-05-30 21:40:04 -0700 |
commit | caa24b5f43709f3201faf0eabf2ac7afcdee17f7 (patch) | |
tree | d9395c0071fa0ee5fd73177cc944145a353a4c10 /static/manage.html | |
parent | 869b0262ac1c69fe41cc8d6bc59bd47f6e48f685 (diff) |
more route redirection cleanup
Diffstat (limited to 'static/manage.html')
-rw-r--r-- | static/manage.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/manage.html b/static/manage.html index 9578f8a..4fb417f 100644 --- a/static/manage.html +++ b/static/manage.html @@ -50,7 +50,7 @@ <ul style="display: inline-block; padding: 0; margin: 0; list-style-type: none;"> {{ $domain := .Domain }} {{ range .Reported }} - <li><a id="rpost" post="{{ .ID }}" href=""></a> - <b>{{ .Count }}</b> <a href="/delete?id={{ .ID }}&board={{ $board.Name }}">[Remove Post]</a> <a href="/deleteattach?id={{ .ID }}">[Remove Attachment]</a> <a href="/report?id={{ .ID }}&close=1&board={{ $board.Name }}">[Close]</a></li> + <li><a id="rpost" post="{{ .ID }}" href=""></a> - <b>{{ .Count }}</b> <a href="/delete?id={{ .ID }}&board={{ $board.Name }}&manage=t">[Remove Post]</a> <a href="/deleteattach?id={{ .ID }}&board={{ $board.Name }}&manage=t">[Remove Attachment]</a> <a href="/report?id={{ .ID }}&close=1&board={{ $board.Name }}">[Close]</a></li> {{ end }} </ul> </div> |