diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-13 17:11:50 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-13 17:13:06 +0200 |
commit | 3ccc3a15c541763431baf33ffb605fff9cdaec65 (patch) | |
tree | 938b4e94156cc9fe39fa7e7218b66aeafe709214 /archaeological_finds/models.py | |
parent | 885cac313e1c937f93379a9a234ca178cc75ab0d (diff) | |
download | Ishtar-3ccc3a15c541763431baf33ffb605fff9cdaec65.tar.bz2 Ishtar-3ccc3a15c541763431baf33ffb605fff9cdaec65.zip |
Finds - fields: add clutter dimensions and material, object type quality types
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index a0f387620..774b3c98b 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -3,7 +3,7 @@ from archaeological_finds.models_finds import MaterialType, ConservatoryState,\ FindBasket, Find, FindSource, Property, CHECK_CHOICES, BatchType, \ BFBulkView, FBulkView, FirstBaseFindView, AlterationType, \ AlterationCauseType, TreatmentEmergencyType, TreatmentType, \ - CommunicabilityType + CommunicabilityType, MaterialTypeQualityType, ObjectTypeQualityType from archaeological_finds.models_treatments import Treatment, \ AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \ FindTreatments, TreatmentSource, TreatmentFile, TreatmentFileType, \ @@ -18,4 +18,5 @@ __all__ = ['MaterialType', 'ConservatoryState', 'Treatment', 'AbsFindTreatments', 'FindUpstreamTreatments', 'FindDownstreamTreatments', 'FindTreatments', 'TreatmentSource', 'TreatmentFile', 'TreatmentFileType', 'TreatmentFileSource', - 'CommunicabilityType'] + 'CommunicabilityType', 'MaterialTypeQualityType', + 'ObjectTypeQualityType'] |