Adds short description to edit site form
This commit is contained in:
parent
e375b3fd6a
commit
def4d89bf8
3 changed files with 24 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue