diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-16 16:41:46 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-16 16:41:46 +0200 |
commit | 6e95beabf26ddd3d8de69e34dfbfb97bc1625d80 (patch) | |
tree | 364c2688b46f47d3ee9243e70cbaf5485e177b0f /archaeological_finds/models.py | |
parent | 303a62efae3d3f568545c682649a29de1fb7fc83 (diff) | |
download | Ishtar-6e95beabf26ddd3d8de69e34dfbfb97bc1625d80.tar.bz2 Ishtar-6e95beabf26ddd3d8de69e34dfbfb97bc1625d80.zip |
🗃️ museum module: new db fields, add admin
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 102 |
1 files changed, 59 insertions, 43 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index c8c526d2f..052e493a4 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -1,71 +1,87 @@ from archaeological_finds.models_finds import ( - MaterialType, - ConservatoryState, - CheckedType, - IntegrityType, - RemarkabilityType, - ObjectType, - BaseFind, - FindBasket, - Find, - Property, + AlterationType, + AlterationCauseType, BatchType, + BaseFind, BFBulkView, + CheckedType, + CollectionEntryModeType, + CommunicabilityType, + ConservatoryState, FBulkView, + Find, + FindBasket, + FindInsideContainer, FirstBaseFindView, - AlterationType, - AlterationCauseType, - TreatmentEmergencyType, - TreatmentType, - CommunicabilityType, + FunctionalArea, + IntegrityType, + InventoryConformity, + InventoryMarkingPresence, + MarkingType, + MaterialType, MaterialTypeQualityType, + MuseumCollection, + ObjectType, ObjectTypeQualityType, - FindInsideContainer, - FunctionalArea, + OriginalReproduction, + Property, + RemarkabilityType, + TechnicalAreaType, + TechnicalProcessType, + TreatmentEmergencyType, + TreatmentType, ) from archaeological_finds.models_treatments import ( - Treatment, AbsFindTreatments, - FindUpstreamTreatments, + Treatment, FindDownstreamTreatments, + FindNonModifTreatments, FindTreatments, + FindUpstreamTreatments, TreatmentFile, TreatmentFileType, TreatmentState, - FindNonModifTreatments, ) __all__ = [ - "MaterialType", - "ConservatoryState", - "IntegrityType", - "CheckedType", - "RemarkabilityType", - "ObjectType", + "AbsFindTreatments", + "AlterationType", + "AlterationCauseType", "BaseFind", - "FindBasket", - "Find", - "Property", + "BatchType", "BFBulkView", + "CheckedType", + "CollectionEntryModeType", + "CommunicabilityType", + "ConservatoryState", "FBulkView", + "Find", "FirstBaseFindView", - "AlterationType", - "AlterationCauseType", - "TreatmentEmergencyType", - "BatchType", - "TreatmentType", - "TreatmentState", - "Treatment", - "AbsFindTreatments", - "FindUpstreamTreatments", - "FindNonModifTreatments", + "FindBasket", "FindDownstreamTreatments", + "FindInsideContainer", + "FindNonModifTreatments", "FindTreatments", + "FindUpstreamTreatments", "FunctionalArea", - "TreatmentFile", - "TreatmentFileType", - "CommunicabilityType", + "IntegrityType", + "InventoryConformity", + "InventoryMarkingPresence", + "MarkingType", + "MaterialType", "MaterialTypeQualityType", + "MuseumCollection", + "ObjectType", "ObjectTypeQualityType", - "FindInsideContainer", + "OriginalReproduction", + "Property", + "RemarkabilityType", + "TechnicalAreaType", + "TechnicalProcessType", + "Treatment", + "TreatmentEmergencyType", + "TreatmentFile", + "TreatmentFileType", + "TreatmentType", + "TreatmentState", ] |