diff --git a/webinterface.py b/webinterface.py index 778921dd..f69a680b 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5384,7 +5384,12 @@ def htmlNewswire(newswire: str, nickname: str, moderator: bool, if 'vote:' in line: totalVotes += 1 if totalVotes > 0: - totalVotesStr = ' +' + str(totalVotes) + totalVotesStr = ' ' + for v in range(totalVotes): + if positiveVoting: + totalVotesStr += '✓' + else: + totalVotesStr += '✗' htmlStr += '
' + \ '' + item[0] + '' + \