make the ((( in earlylife award stack along with the time

remotes/1693045480750635534/spooky-22
Aevann1 2022-08-30 13:54:43 +02:00
parent 9bc075193f
commit fc01eb6c1d
1 changed files with 8 additions and 1 deletions

View File

@ -207,7 +207,14 @@ class Submission(Base):
@lazy
def author_name(self):
if self.ghost: return '👻'
if self.author.earlylife: return f'((({self.author.username})))'
if self.author.earlylife:
expiry = int(self.author.earlylife - time.time())
if expiry > 86400:
name = self.author.username
for i in range(int(expiry / 86400 + 1)):
name = f'((({name})))'
return name
return f'((({self.author.username})))'
return self.author.username
@property