diff options
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', |