Allow blank source in cover.
authorRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 3 Feb 2014 09:40:19 +0000 (10:40 +0100)
committerRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 3 Feb 2014 09:40:19 +0000 (10:40 +0100)
apps/cover/models.py

index d4432c2..e929688 100644 (file)
@@ -20,8 +20,8 @@ class Image(models.Model):
     author = models.CharField(max_length=255, verbose_name=_('author'))
     license_name = models.CharField(max_length=255, verbose_name=_('license name'))
     license_url = models.URLField(max_length=255, blank=True, verbose_name=_('license URL'))
-    source_url = models.URLField(verbose_name=_('source URL'), null = True)
-    download_url = models.URLField(unique=True, verbose_name=_('image download URL'), null = True)
+    source_url = models.URLField(verbose_name=_('source URL'), null=True, blank=True)
+    download_url = models.URLField(unique=True, verbose_name=_('image download URL'), null=True, blank=True)
     file = models.ImageField(upload_to='cover/image', editable=True, verbose_name=_('file'))
 
     class Meta:
@@ -45,4 +45,4 @@ def download_image(sender, instance, **kwargs):
         t = URLOpener().open(instance.download_url).read()
         instance.file.save("%d.jpg" % instance.pk, ContentFile(t))
         
-        
\ No newline at end of file
+