merge-requests/8/head
Bob Mottram 2020-10-02 20:28:51 +01:00
parent a7198ed78a
commit 6b55707852
3 changed files with 49 additions and 2 deletions

View File

@ -1464,7 +1464,7 @@ aside .toggle-inside li {
height: 6%; height: 6%;
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100vw; background-size: 145vw;
position: relative; position: relative;
} }
.timeline { .timeline {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

@ -5272,7 +5272,54 @@ def getRightColumnContent(baseDir: str, nickname: str, domain: str) -> str:
"""Returns html content for the right column """Returns html content for the right column
""" """
htmlStr = '' htmlStr = ''
# TODO
domain = domainFull
if ':' in domain:
domain = domain.split(':')
rightColumnImageFilename = \
baseDir + '/accounts/' + nickname + '@' + domain + \
'/right_col_image.png'
if not os.path.isfile(rightColumnImageFilename):
theme = getConfigParam(baseDir, 'theme').lower()
if theme == 'default':
theme = ''
else:
theme = '_' + theme
themeRightColumnImageFilename = \
baseDir + '/img/right_col_image' + theme + '.png'
if os.path.isfile(themeRightColumnImageFilename):
copyfile(themeRightColumnImageFilename, rightColumnImageFilename)
# show the image at the top of the column
editImageClass = 'rightColEdit'
if os.path.isfile(rightColumnImageFilename):
editImageClass = 'rightColEditImage'
htmlStr += \
' <center>\n' + \
' <img class="rightColImg" loading="lazy" src="/users/' + nickname + \
'/right_col_image.png" />\n' + \
' </center>\n'
if editImageClass == 'rightColEdit':
htmlStr += ' <center>\n'
if moderator:
# show the edit icon
htmlStr += \
' <a href="' + \
httpPrefix + '://' + domainFull + \
'/users/' + nickname + '/editnewswire">' + \
'<img class="' + editImageClass + \
'" loading="lazy" alt="' + \
translate['Edit Links'] + '" title="' + \
translate['Edit Links'] + '" src="/' + \
iconsDir + '/edit.png" /></a>\n'
if editImageClass == 'rightColEdit':
htmlStr += ' <center>\n'
else:
htmlStr += ' <br>\n'
return htmlStr return htmlStr