From: Radek Czajka Date: Wed, 31 Jan 2024 07:56:24 +0000 (+0100) Subject: fix X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain fix --- diff --git a/src/documents/models/project.py b/src/documents/models/project.py index ed066f18..7e9cf306 100644 --- a/src/documents/models/project.py +++ b/src/documents/models/project.py @@ -12,6 +12,7 @@ class Project(models.Model): notes = models.TextField(_('notes'), blank=True, null=True) logo = models.FileField(upload_to='projects', blank=True) logo_mono = models.FileField(upload_to='logo_mono', help_text='white on transparent', blank=True) + logo_alt = models.CharField(max_length=255, blank=True) class Meta: app_label = 'documents'