diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-26 18:34:09 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-26 18:34:09 +0100 |
commit | c8aeaadac1156a679a4ec021f7b36784b9ab69c0 (patch) | |
tree | 04c4f2769840880c3311f34a57597372509bdcd6 /archaeological_finds/models.py | |
parent | 33fe24b1e8bb81b8e4e2f9851d967ce86616c62b (diff) | |
download | Ishtar-c8aeaadac1156a679a4ec021f7b36784b9ab69c0.tar.bz2 Ishtar-c8aeaadac1156a679a4ec021f7b36784b9ab69c0.zip |
Operations: bulk update of base find and finds (refs #3472)
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 1a1ef063d..eb209461f 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -1,6 +1,7 @@ from archaeological_finds.models_finds import MaterialType, ConservatoryState,\ PreservationType, IntegrityType, RemarkabilityType, ObjectType, BaseFind, \ - FindBasket, Find, FindSource, Property, CHECK_CHOICES, BatchType + FindBasket, Find, FindSource, Property, CHECK_CHOICES, BatchType, \ + BFBulkView, FBulkView, FirstBaseFindView from archaeological_finds.models_treatments import TreatmentType, Treatment, \ AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \ FindTreatments, TreatmentSource, TreatmentFile, TreatmentFileType, \ @@ -9,6 +10,7 @@ from archaeological_finds.models_treatments import TreatmentType, Treatment, \ __all__ = ['MaterialType', 'ConservatoryState', 'PreservationType', 'IntegrityType', 'RemarkabilityType', 'ObjectType', 'BaseFind', 'FindBasket', 'Find', 'FindSource', 'Property', + 'BFBulkView', 'FBulkView', 'FirstBaseFindView', 'CHECK_CHOICES', 'BatchType', 'TreatmentType', 'TreatmentState', 'Treatment', 'AbsFindTreatments', 'FindUpstreamTreatments', 'FindDownstreamTreatments', 'FindTreatments', 'TreatmentSource', |