diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-14 13:17:56 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-14 13:17:56 +0200 |
commit | fbd17f27b6a7eeaf8d85ba72cf535dad8c0cc5f1 (patch) | |
tree | cf6599a71b6ce3267ce6a382b0bc0c46fb3fdb28 /archaeological_finds/models.py | |
parent | fc778c5aa63778892ff0643395d6b24f64c1325a (diff) | |
download | Ishtar-fbd17f27b6a7eeaf8d85ba72cf535dad8c0cc5f1.tar.bz2 Ishtar-fbd17f27b6a7eeaf8d85ba72cf535dad8c0cc5f1.zip |
Find form configuration
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 98d495d7c..23177faee 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -1,9 +1,9 @@ from archaeological_finds.models_finds import MaterialType, ConservatoryState, \ CheckedType, IntegrityType, RemarkabilityType, ObjectType, BaseFind, \ - FindBasket, Find, Property, CHECK_CHOICES, BatchType, \ - BFBulkView, FBulkView, FirstBaseFindView, AlterationType, \ - AlterationCauseType, TreatmentEmergencyType, TreatmentType, \ - CommunicabilityType, MaterialTypeQualityType, ObjectTypeQualityType + FindBasket, Find, Property, BatchType, BFBulkView, FBulkView, \ + FirstBaseFindView, AlterationType, AlterationCauseType, \ + TreatmentEmergencyType, TreatmentType, CommunicabilityType, \ + MaterialTypeQualityType, ObjectTypeQualityType from archaeological_finds.models_treatments import Treatment, \ AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \ FindTreatments, TreatmentFile, TreatmentFileType, \ @@ -13,7 +13,7 @@ __all__ = ['MaterialType', 'ConservatoryState', 'IntegrityType', 'CheckedType', 'RemarkabilityType', 'ObjectType', 'BaseFind', 'FindBasket', 'Find', 'Property', 'BFBulkView', 'FBulkView', 'FirstBaseFindView', 'AlterationType', 'AlterationCauseType', 'TreatmentEmergencyType', - 'CHECK_CHOICES', 'BatchType', 'TreatmentType', 'TreatmentState', + 'BatchType', 'TreatmentType', 'TreatmentState', 'Treatment', 'AbsFindTreatments', 'FindUpstreamTreatments', 'FindDownstreamTreatments', 'FindTreatments', 'TreatmentFile', 'TreatmentFileType', 'CommunicabilityType', |