diff options
Diffstat (limited to 'ishtar_common/models.py')
| -rw-r--r-- | ishtar_common/models.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 4d8243af4..3a0bb853f 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -3040,7 +3040,7 @@ class ImageType(GeneralType):  class IshtarImage(ImageModel): -    name = models.CharField(_(u"Name"), max_length=250) +    name = models.CharField(_(u"Name"), max_length=250, blank=True, null=True)      description = models.TextField(_(u"Description"), blank=True, null=True)      licenses = models.ManyToManyField(LicenseType, verbose_name=_(u"License"),                                        blank=True) | 
