Allow logo upload
This commit is contained in:
parent
0a9809e6b3
commit
94fc365a52
2 changed files with 40 additions and 0 deletions
|
@ -17,6 +17,18 @@ class SiteSettings(models.Model):
|
|||
code_of_conduct = models.TextField(
|
||||
default="Add a code of conduct here.")
|
||||
allow_registration = models.BooleanField(default=True)
|
||||
logo = models.ImageField(
|
||||
upload_to='static/images/',
|
||||
default='/static/images/logo.png'
|
||||
)
|
||||
logo_small = models.ImageField(
|
||||
upload_to='static/images/',
|
||||
default='/static/images/logo-small.png'
|
||||
)
|
||||
favicon = models.ImageField(
|
||||
upload_to='static/images/',
|
||||
default='/static/images/favicon.ico'
|
||||
)
|
||||
|
||||
@classmethod
|
||||
def get(cls):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue