diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-06-11 18:31:55 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-06-11 18:31:55 +0200 |
commit | a03552fe269095fe521106c561c470f774e41909 (patch) | |
tree | 15e04c15041d7a04a810b7d30fbe1ccfd4559fa9 /ishtar_common | |
parent | 6fc9685d8f5092c7df325f5d8a6caca1f5aa9ebc (diff) | |
download | Ishtar-a03552fe269095fe521106c561c470f774e41909.tar.bz2 Ishtar-a03552fe269095fe521106c561c470f774e41909.zip |
Operations: work on import
Diffstat (limited to 'ishtar_common')
-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, |