diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-02-15 12:25:13 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-02-15 12:25:13 +0100 |
commit | ee0c65f8b5cee7dbfbe65099a65f666267daa809 (patch) | |
tree | 22878e182bd23b3b2102eeffe215a3dab5618b07 /archaeological_finds/models.py | |
parent | 42c6c2166d0e2845c28c776b404072d0b226664d (diff) | |
download | Ishtar-ee0c65f8b5cee7dbfbe65099a65f666267daa809.tar.bz2 Ishtar-ee0c65f8b5cee7dbfbe65099a65f666267daa809.zip |
Finds - communicability: add new in model, admin and sheet (refs #3754)
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 2f7c547b8..a0f387620 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -2,7 +2,8 @@ from archaeological_finds.models_finds import MaterialType, ConservatoryState,\ IntegrityType, RemarkabilityType, ObjectType, BaseFind, \ FindBasket, Find, FindSource, Property, CHECK_CHOICES, BatchType, \ BFBulkView, FBulkView, FirstBaseFindView, AlterationType, \ - AlterationCauseType, TreatmentEmergencyType, TreatmentType + AlterationCauseType, TreatmentEmergencyType, TreatmentType, \ + CommunicabilityType from archaeological_finds.models_treatments import Treatment, \ AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \ FindTreatments, TreatmentSource, TreatmentFile, TreatmentFileType, \ @@ -16,4 +17,5 @@ __all__ = ['MaterialType', 'ConservatoryState', 'CHECK_CHOICES', 'BatchType', 'TreatmentType', 'TreatmentState', 'Treatment', 'AbsFindTreatments', 'FindUpstreamTreatments', 'FindDownstreamTreatments', 'FindTreatments', 'TreatmentSource', - 'TreatmentFile', 'TreatmentFileType', 'TreatmentFileSource'] + 'TreatmentFile', 'TreatmentFileType', 'TreatmentFileSource', + 'CommunicabilityType'] |