diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-10-04 16:49:10 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-10-04 16:49:10 +0200 |
commit | ff453b2c6f8b2c44e317db829fdc27fe2c77ec29 (patch) | |
tree | 748fd1368aa2af53a4d890dd8e035ce47fd026d2 /archaeological_finds/models.py | |
parent | d3f89517dd584db7d70495660b3546b15858445b (diff) | |
download | Ishtar-ff453b2c6f8b2c44e317db829fdc27fe2c77ec29.tar.bz2 Ishtar-ff453b2c6f8b2c44e317db829fdc27fe2c77ec29.zip |
Preservation: adapt forms with a preservation panel (refs #3639)
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index eb209461f..ab3686f08 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -1,7 +1,8 @@ from archaeological_finds.models_finds import MaterialType, ConservatoryState,\ PreservationType, IntegrityType, RemarkabilityType, ObjectType, BaseFind, \ FindBasket, Find, FindSource, Property, CHECK_CHOICES, BatchType, \ - BFBulkView, FBulkView, FirstBaseFindView + BFBulkView, FBulkView, FirstBaseFindView, AlterationType, \ + AlterationCauseType, TreatmentEmergencyType from archaeological_finds.models_treatments import TreatmentType, Treatment, \ AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \ FindTreatments, TreatmentSource, TreatmentFile, TreatmentFileType, \ @@ -10,7 +11,8 @@ from archaeological_finds.models_treatments import TreatmentType, Treatment, \ __all__ = ['MaterialType', 'ConservatoryState', 'PreservationType', 'IntegrityType', 'RemarkabilityType', 'ObjectType', 'BaseFind', 'FindBasket', 'Find', 'FindSource', 'Property', - 'BFBulkView', 'FBulkView', 'FirstBaseFindView', + 'BFBulkView', 'FBulkView', 'FirstBaseFindView', 'AlterationType', + 'AlterationCauseType', 'TreatmentEmergencyType', 'CHECK_CHOICES', 'BatchType', 'TreatmentType', 'TreatmentState', 'Treatment', 'AbsFindTreatments', 'FindUpstreamTreatments', 'FindDownstreamTreatments', 'FindTreatments', 'TreatmentSource', |