X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d454277a61e2f34e34ee87777b0d35724edf877e..08433423130c027b64c87c13c1bb4d2390694263:/apps/catalogue/models/source.py diff --git a/apps/catalogue/models/source.py b/apps/catalogue/models/source.py index f530e07f4..d13161378 100644 --- a/apps/catalogue/models/source.py +++ b/apps/catalogue/models/source.py @@ -9,7 +9,7 @@ from django.utils.translation import ugettext_lazy as _ class Source(models.Model): """A collection of books, which might be defined before publishing them.""" netloc = models.CharField(_('network location'), max_length=120, primary_key=True) - name = models.CharField(_('name'), max_length=120) + name = models.CharField(_('name'), max_length=120, blank=True) class Meta: ordering = ('netloc',)