Adds short description to edit site form

This commit is contained in:
Mouse Reeve
2021-09-10 12:13:24 -07:00
parent e375b3fd6a
commit def4d89bf8
3 changed files with 24 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class SiteSettings(models.Model):
max_length=150, default="Social Reading and Reviewing"
)
instance_description = models.TextField(default="This instance has no description.")
instance_short_description = models.TextField(blank=True, null=True)
instance_short_description = models.CharField(max_length=255, blank=True, null=True)
# about page
registration_closed_text = models.TextField(