diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-02 09:57:02 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-02 10:33:16 +0100 | 
| commit | 43ae3f7a4870fac32fb2d10874ad539364aee66f (patch) | |
| tree | 99c28890ccda877f8a906c6233fdabd1bec002ed /archaeological_finds/models.py | |
| parent | efebfe2dbcd7b8984c630069fcde6611bacf36d5 (diff) | |
| download | Ishtar-43ae3f7a4870fac32fb2d10874ad539364aee66f.tar.bz2 Ishtar-43ae3f7a4870fac32fb2d10874ad539364aee66f.zip  | |
Finds: batch is now a real type (refs #3435)
Diffstat (limited to 'archaeological_finds/models.py')
| -rw-r--r-- | archaeological_finds/models.py | 11 | 
1 files changed, 5 insertions, 6 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 50c42ef30..1a1ef063d 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -1,6 +1,6 @@  from archaeological_finds.models_finds import MaterialType, ConservatoryState,\      PreservationType, IntegrityType, RemarkabilityType, ObjectType, BaseFind, \ -    FindBasket, Find, FindSource, Property, IS_ISOLATED_CHOICES, CHECK_CHOICES +    FindBasket, Find, FindSource, Property, CHECK_CHOICES, BatchType  from archaeological_finds.models_treatments import TreatmentType, Treatment, \      AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \      FindTreatments, TreatmentSource, TreatmentFile, TreatmentFileType, \ @@ -9,8 +9,7 @@ from archaeological_finds.models_treatments import TreatmentType, Treatment, \  __all__ = ['MaterialType', 'ConservatoryState', 'PreservationType',             'IntegrityType', 'RemarkabilityType', 'ObjectType',             'BaseFind', 'FindBasket', 'Find', 'FindSource', 'Property', -           'IS_ISOLATED_CHOICES', 'CHECK_CHOICES', -           'TreatmentType', 'TreatmentState', 'Treatment', 'AbsFindTreatments', -           'FindUpstreamTreatments', 'FindDownstreamTreatments', -           'FindTreatments', 'TreatmentSource', 'TreatmentFile', -           'TreatmentFileType', 'TreatmentFileSource'] +           'CHECK_CHOICES', 'BatchType', 'TreatmentType', 'TreatmentState', +           'Treatment', 'AbsFindTreatments', 'FindUpstreamTreatments', +           'FindDownstreamTreatments', 'FindTreatments', 'TreatmentSource', +           'TreatmentFile', 'TreatmentFileType', 'TreatmentFileSource']  | 
