diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-05-11 17:33:47 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 08:44:34 +0200 |
commit | 7c9a9d586e5255b60179807934e780b3d38cd30e (patch) | |
tree | 9730565001c023b38104b04fafad2ec1ff183373 /archaeological_finds/models.py | |
parent | 11e557cc8a28628ae777415fa5c04196c555e749 (diff) | |
download | Ishtar-7c9a9d586e5255b60179807934e780b3d38cd30e.tar.bz2 Ishtar-7c9a9d586e5255b60179807934e780b3d38cd30e.zip |
Adapt forms and wizards to manage M2M images (refs #4076)
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'] |