Actually, let the entry title extend to 100 chars if it wants

This commit is contained in:
Danielle McLean 2017-10-27 19:50:29 +11:00
parent d2b7ed5d02
commit 9df4cb1eca
Signed by: 00dani
GPG Key ID: 5A5D2D1AFF12EEC5
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class Entry(ModelMeta, models.Model):
def title(self):
if self.name:
return self.name
return shorten(self.paragraphs[0], width=50, placeholder='')
return shorten(self.paragraphs[0], width=100, placeholder='')
@property
def excerpt(self):