From 963e972f7d031fee1ad5111382e613a8d7d95782 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 25 Aug 2019 19:08:25 +0100 Subject: [PATCH] Showrepeat variable --- epicyon-profile.css | 2 +- webinterface.py | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/epicyon-profile.css b/epicyon-profile.css index e846de54d..b369d8928 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -406,7 +406,7 @@ a:link { .container img.DMicon { float: none; - width: 60px; + width: 40px; margin: 0 0; padding: 0 0; border-radius: 0; diff --git a/webinterface.py b/webinterface.py index f53a582ac..a4125c616 100644 --- a/webinterface.py +++ b/webinterface.py @@ -1093,10 +1093,11 @@ def individualPostAsHtml(baseDir: str, \ """ Shows a single post as html """ # If this is the inbox timeline then don't show the repeat icon on any DMs + showRepeatIcon=showRepeats showDMicon=False if showRepeats: if isDM(postJsonObject): - showRepeats=False + showRepeatIcon=False showDMicon=True titleStr='' @@ -1172,7 +1173,7 @@ def individualPostAsHtml(baseDir: str, \ if showDMicon: titleStr=''+titleStr - if showRepeats: + if showRepeatIcon: if isAnnounced: if postJsonObject['object'].get('attributedTo'): announceNickname=getNicknameFromActor(postJsonObject['object']['attributedTo']) @@ -1274,7 +1275,7 @@ def individualPostAsHtml(baseDir: str, \ footerStr=''+publishedStr+'\n' announceStr='' - if not isModerationPost and showRepeats: + if not isModerationPost and showRepeatIcon: # don't allow announce/repeat of your own posts announceIcon='repeat_inactive.png' announceLink='repeat' @@ -1323,7 +1324,7 @@ def individualPostAsHtml(baseDir: str, \ break footerStr='
' - if not isModerationPost and showRepeats: + if not isModerationPost and showRepeatIcon: footerStr+='' else: footerStr+=''