From 351addbe79c66008e37f5d62cf0b8fbe431e92ba Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 21 Jul 2019 21:36:58 +0100 Subject: [PATCH] Height of avatar image --- webinterface.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webinterface.py b/webinterface.py index 87d2ea4dc..31762a5ec 100644 --- a/webinterface.py +++ b/webinterface.py @@ -48,13 +48,15 @@ def htmlProfile(profileJson: {}) -> str: domainFull=domain if port: domainFull=domain+':'+str(port) + profileDescription=profileJson['publicKey']['summary'] + profileDescription='A test description' profileStr= \ '
' \ '
' \ - ' '+nickname+'@'+domainFull+'' \ + ' '+nickname+'@'+domainFull+'' \ '

'+preferredName+'

' \ '

@'+nickname+'@'+domainFull+'

' \ - '

'+profileJson['publicKey']['summary']+'

' \ + '

'+profileDescription+'

' \ '
' \ '
' \ '
\n' \ @@ -92,6 +94,7 @@ def htmlProfile(profileJson: {}) -> str: '' \ '.hero-text img {' \ ' border-radius: 10%;' \ + ' width: 50%;' \ '}' \ '' \ '.hero-text button {' \