From 2f24022b0dab4fd4b0b30156b8f413a2d504432c Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 6 Oct 2020 17:28:09 +0100 Subject: [PATCH] Include link to actor on moderation item --- webinterface.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/webinterface.py b/webinterface.py index a4fa5b9c..b972d0e5 100644 --- a/webinterface.py +++ b/webinterface.py @@ -1299,14 +1299,21 @@ def htmlNewswireModeration(baseDir: str, path: str, translate: {}) -> str: # details of this post title = item[0] url = item[1] - # nick = item[2] + nick = item[2] # status = item[3] postFilename = item[4].replace('/', '#') # create the html for this post resultStr += '
' + resultStr += \ - '' + '' + resultStr += \ + '' + \ + nick + ': ' + + resultStr += \ + '' resultStr += \ '' + \ title + ''