diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-13 17:44:41 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-13 18:26:04 +0200 |
commit | c7252b0af6e138caf976543abe2e794a3dcd42a6 (patch) | |
tree | e6159eec34e222717933afcb1aac547099386693 /archaeological_finds/models.py | |
parent | 902adc1bb676727e680cb5eddf61e9463c6ce1c9 (diff) | |
download | Ishtar-c7252b0af6e138caf976543abe2e794a3dcd42a6.tar.bz2 Ishtar-c7252b0af6e138caf976543abe2e794a3dcd42a6.zip |
Find: migrate checked to a real type - Find select form configuration
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 1052edb19..98d495d7c 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -1,5 +1,5 @@ from archaeological_finds.models_finds import MaterialType, ConservatoryState, \ - IntegrityType, RemarkabilityType, ObjectType, BaseFind, \ + CheckedType, IntegrityType, RemarkabilityType, ObjectType, BaseFind, \ FindBasket, Find, Property, CHECK_CHOICES, BatchType, \ BFBulkView, FBulkView, FirstBaseFindView, AlterationType, \ AlterationCauseType, TreatmentEmergencyType, TreatmentType, \ @@ -9,7 +9,7 @@ from archaeological_finds.models_treatments import Treatment, \ FindTreatments, TreatmentFile, TreatmentFileType, \ TreatmentState -__all__ = ['MaterialType', 'ConservatoryState', 'IntegrityType', +__all__ = ['MaterialType', 'ConservatoryState', 'IntegrityType', 'CheckedType', 'RemarkabilityType', 'ObjectType', 'BaseFind', 'FindBasket', 'Find', 'Property', 'BFBulkView', 'FBulkView', 'FirstBaseFindView', 'AlterationType', 'AlterationCauseType', 'TreatmentEmergencyType', |