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 | a1b49aeac0c932c54b06670ee2b35ea946d84f32 (patch) | |
tree | 15e04c15041d7a04a810b7d30fbe1ccfd4559fa9 /ishtar_common | |
parent | 8cd29955e19d099d367896e714bc56103cd83d00 (diff) | |
download | Ishtar-a1b49aeac0c932c54b06670ee2b35ea946d84f32.tar.bz2 Ishtar-a1b49aeac0c932c54b06670ee2b35ea946d84f32.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, |