summaryrefslogtreecommitdiff
path: root/archaeological_finds/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-07-01 11:22:12 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-07-01 11:22:12 +0200
commit7c66a1cccd8875d84722bc2f72cbda233604385f (patch)
tree1904105686e66fd96a397c7f00b5cb11dfbd2849 /archaeological_finds/models.py
parent05a15e46173ff8d2f4bb22e5c65b86bdfa2ed36e (diff)
downloadIshtar-7c66a1cccd8875d84722bc2f72cbda233604385f.tar.bz2
Ishtar-7c66a1cccd8875d84722bc2f72cbda233604385f.zip
Treatments: add "upstream is many" and "downstream is many fields" in treatment types
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r--archaeological_finds/models.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py
index 7d50a0dfb..65d30f37a 100644
--- a/archaeological_finds/models.py
+++ b/archaeological_finds/models.py
@@ -613,6 +613,10 @@ class FindSource(Source):
class TreatmentType(GeneralType):
virtual = models.BooleanField(_(u"Virtual"))
+ upstream_is_many = models.BooleanField(_(u"Upstream is many"),
+ default=False)
+ downstream_is_many = models.BooleanField(_(u"Downstream is many"),
+ default=False)
class Meta:
verbose_name = _(u"Treatment type")