diff options
| author | mailman | 1998-03-24 05:04:33 +0000 |
|---|---|---|
| committer | mailman | 1998-03-24 05:04:33 +0000 |
| commit | 39e3b8659f49c7552df059eabd49231bdb549b6c (patch) | |
| tree | 93ae9c4ee62e59a3696dcbde148f3b5e55e78985 | |
| parent | a1d8f494f75be8822f672ccdf6bb36b310acdae8 (diff) | |
| download | mailman-39e3b8659f49c7552df059eabd49231bdb549b6c.tar.gz mailman-39e3b8659f49c7552df059eabd49231bdb549b6c.tar.zst mailman-39e3b8659f49c7552df059eabd49231bdb549b6c.zip | |
Added 'discard' option to 'approve' and 'reject' (and moved 'approve'
ahead of 'reject').
| -rwxr-xr-x | cgi/admindb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cgi/admindb b/cgi/admindb index 1a0646c95..9fb34f5cc 100755 --- a/cgi/admindb +++ b/cgi/admindb @@ -116,7 +116,8 @@ def PrintPostRequest(val, form): t.AddRow([ htmlformat.FontSize("+1", htmlformat.Bold('Action to take on this post:')), - htmlformat.RadioButtonArray(val[0], ("Reject", "Approve")), + htmlformat.RadioButtonArray(val[0], ("Approve", "Reject", + "Discard (eg, spam)")), htmlformat.SubmitButton('submit', 'Submit All Data') ]) t.AddRow([ |
