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 8fcfacc9a..cf1448497 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -638,7 +638,7 @@ class SourceType(GeneralType): verbose_name_plural = _(u"Source types") class Source(models.Model): - title = models.CharField(_(u"Title"), max_length=200) + title = models.CharField(_(u"Title"), max_length=300) source_type = models.ForeignKey(SourceType, verbose_name=_(u"Type")) authors = models.ManyToManyField(Author, verbose_name=_(u"Authors")) associated_url = models.URLField(verify_exists=False, blank=True, null=True, |