summaryrefslogtreecommitdiff
path: root/archaeological_finds/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-02-15 12:25:13 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-02-15 12:25:13 +0100
commite8aa48bfdd8a6269864f0cbc815868e90832e928 (patch)
tree22878e182bd23b3b2102eeffe215a3dab5618b07 /archaeological_finds/models.py
parent4eb5ebed5bbe24eae7e37c798fda24e895d56520 (diff)
downloadIshtar-e8aa48bfdd8a6269864f0cbc815868e90832e928.tar.bz2
Ishtar-e8aa48bfdd8a6269864f0cbc815868e90832e928.zip
Finds - communicability: add new in model, admin and sheet (refs #3754)
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r--archaeological_finds/models.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py
index 2f7c547b8..a0f387620 100644
--- a/archaeological_finds/models.py
+++ b/archaeological_finds/models.py
@@ -2,7 +2,8 @@ from archaeological_finds.models_finds import MaterialType, ConservatoryState,\
IntegrityType, RemarkabilityType, ObjectType, BaseFind, \
FindBasket, Find, FindSource, Property, CHECK_CHOICES, BatchType, \
BFBulkView, FBulkView, FirstBaseFindView, AlterationType, \
- AlterationCauseType, TreatmentEmergencyType, TreatmentType
+ AlterationCauseType, TreatmentEmergencyType, TreatmentType, \
+ CommunicabilityType
from archaeological_finds.models_treatments import Treatment, \
AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \
FindTreatments, TreatmentSource, TreatmentFile, TreatmentFileType, \
@@ -16,4 +17,5 @@ __all__ = ['MaterialType', 'ConservatoryState',
'CHECK_CHOICES', 'BatchType', 'TreatmentType', 'TreatmentState',
'Treatment', 'AbsFindTreatments', 'FindUpstreamTreatments',
'FindDownstreamTreatments', 'FindTreatments', 'TreatmentSource',
- 'TreatmentFile', 'TreatmentFileType', 'TreatmentFileSource']
+ 'TreatmentFile', 'TreatmentFileType', 'TreatmentFileSource',
+ 'CommunicabilityType']