diff options
| 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 |
| commit | 7c66a1cccd8875d84722bc2f72cbda233604385f (patch) | |
| tree | 1904105686e66fd96a397c7f00b5cb11dfbd2849 /archaeological_finds/models.py | |
| parent | 05a15e46173ff8d2f4bb22e5c65b86bdfa2ed36e (diff) | |
| download | Ishtar-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.py | 4 |
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") |
