diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-11-03 15:31:46 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-11-03 15:31:46 +0100 |
commit | 5cfd95f3556d6c18741ad9718e3f4128ed64a3d4 (patch) | |
tree | 3432d521b249e439e2fd0229423efea64511e285 /ishtar_common/models.py | |
parent | f296333a87085ee0e04a0f4fbfc207c112f17bce (diff) | |
download | Ishtar-5cfd95f3556d6c18741ad9718e3f4128ed64a3d4.tar.bz2 Ishtar-5cfd95f3556d6c18741ad9718e3f4128ed64a3d4.zip |
Imports: add label to clumn definitions
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index c0888ec06..72a3432f8 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1812,6 +1812,7 @@ class ImporterColumn(models.Model): """ Import file column description """ + label = models.CharField(_(u"Label"), blank=True, null=True, max_length=200) importer_type = models.ForeignKey(ImporterType, related_name='columns') col_number = models.IntegerField(_(u"Column number"), default=1) description = models.TextField(_("Description"), blank=True, null=True) |