diff options
Diffstat (limited to 'ishtar_common/models_imports.py')
-rw-r--r-- | ishtar_common/models_imports.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py index b6b68d5a6..c3fbaa92d 100644 --- a/ishtar_common/models_imports.py +++ b/ishtar_common/models_imports.py @@ -827,6 +827,9 @@ class Import(models.Model): blank=True, null=True, editable=False) seconds_remaining = models.IntegerField( _(u"Remaining seconds"), blank=True, null=True, editable=False) + # used by step by step import + current_line = models.IntegerField(_(u"Current line"), blank=True, + null=True) class Meta: verbose_name = _(u"Import") |