summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-04-07 10:47:39 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-04-07 10:47:39 +0200
commitda4af2ab5d105f6d2ce442b517e532b7570616e3 (patch)
treee433f02a5f75ccce6b9de8f6d79dfb23a4a9142e /ishtar_common/models.py
parente5ebf3169e52e5a425a56d7c908ba422969443de (diff)
downloadIshtar-da4af2ab5d105f6d2ce442b517e532b7570616e3.tar.bz2
Ishtar-da4af2ab5d105f6d2ce442b517e532b7570616e3.zip
Treatment - Treatment files dashboard: first overview (refs #3381)
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index d8ba637db..988254359 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -2323,14 +2323,12 @@ class Import(models.Model):
conservative_import = models.BooleanField(
_(u"Conservative import"), default=False,
help_text='If set to true, do not overload existing values')
- creation_date = models.DateTimeField(_(u"Creation date"),
- auto_now_add=True, blank=True,
- null=True)
+ creation_date = models.DateTimeField(
+ _(u"Creation date"), auto_now_add=True, blank=True, null=True)
end_date = models.DateTimeField(_(u"End date"), blank=True,
null=True, editable=False)
- seconds_remaining = models.IntegerField(_(u"Remaining seconds"),
- blank=True, null=True,
- editable=False)
+ seconds_remaining = models.IntegerField(
+ _(u"Remaining seconds"), blank=True, null=True, editable=False)
class Meta:
verbose_name = _(u"Import")