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 | 6081b054b1167c2288381a9a7f59ecf354339d85 (patch) | |
tree | 26118a3e75bd8047de57caae9927ce533709dd80 /archaeological_finds/models.py | |
parent | c23fd5b7956a3e1c878fa5c87ec4fca5d9c79edb (diff) | |
download | Ishtar-6081b054b1167c2288381a9a7f59ecf354339d85.tar.bz2 Ishtar-6081b054b1167c2288381a9a7f59ecf354339d85.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'] |