diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-01-29 12:15:51 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-01-29 12:15:51 +0100 |
commit | d1ccd3fe6f240882b2158e046b4e7908a814930f (patch) | |
tree | 26118a3e75bd8047de57caae9927ce533709dd80 /archaeological_finds/models.py | |
parent | e059936f31f789b564f262cf7ef04ecccabd1d45 (diff) | |
download | Ishtar-d1ccd3fe6f240882b2158e046b4e7908a814930f.tar.bz2 Ishtar-d1ccd3fe6f240882b2158e046b4e7908a814930f.zip |
Treatments: add a view to get all non modif treatments
- manage go back in the modi treatment hierarchy
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 23177faee..ad349e315 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -7,7 +7,7 @@ from archaeological_finds.models_finds import MaterialType, ConservatoryState, \ from archaeological_finds.models_treatments import Treatment, \ AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \ FindTreatments, TreatmentFile, TreatmentFileType, \ - TreatmentState + TreatmentState, FindNonModifTreatments __all__ = ['MaterialType', 'ConservatoryState', 'IntegrityType', 'CheckedType', 'RemarkabilityType', 'ObjectType', 'BaseFind', 'FindBasket', 'Find', @@ -15,6 +15,7 @@ __all__ = ['MaterialType', 'ConservatoryState', 'IntegrityType', 'CheckedType', 'AlterationType', 'AlterationCauseType', 'TreatmentEmergencyType', 'BatchType', 'TreatmentType', 'TreatmentState', 'Treatment', 'AbsFindTreatments', 'FindUpstreamTreatments', - 'FindDownstreamTreatments', 'FindTreatments', 'TreatmentFile', - 'TreatmentFileType', 'CommunicabilityType', - 'MaterialTypeQualityType', 'ObjectTypeQualityType'] + 'FindNonModifTreatments', 'FindDownstreamTreatments', + 'FindTreatments', 'TreatmentFile', 'TreatmentFileType', + 'CommunicabilityType', 'MaterialTypeQualityType', + 'ObjectTypeQualityType'] |