diff options
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 774b3c98b..7e53b514d 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -3,11 +3,12 @@ from archaeological_finds.models_finds import MaterialType, ConservatoryState,\ FindBasket, Find, FindSource, Property, CHECK_CHOICES, BatchType, \ BFBulkView, FBulkView, FirstBaseFindView, AlterationType, \ AlterationCauseType, TreatmentEmergencyType, TreatmentType, \ - CommunicabilityType, MaterialTypeQualityType, ObjectTypeQualityType + CommunicabilityType, MaterialTypeQualityType, ObjectTypeQualityType, \ + FindImage from archaeological_finds.models_treatments import Treatment, \ AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \ FindTreatments, TreatmentSource, TreatmentFile, TreatmentFileType, \ - TreatmentFileSource, TreatmentState + TreatmentFileSource, TreatmentState, TreatmentImage __all__ = ['MaterialType', 'ConservatoryState', 'IntegrityType', 'RemarkabilityType', 'ObjectType', @@ -19,4 +20,4 @@ __all__ = ['MaterialType', 'ConservatoryState', 'FindDownstreamTreatments', 'FindTreatments', 'TreatmentSource', 'TreatmentFile', 'TreatmentFileType', 'TreatmentFileSource', 'CommunicabilityType', 'MaterialTypeQualityType', - 'ObjectTypeQualityType'] + 'ObjectTypeQualityType', 'TreatmentImage', 'FindImage'] |