diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-12 00:18:46 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-12 00:18:46 +0200 |
commit | 1713ea6f95111cd657f9dd519807dd3c9204323c (patch) | |
tree | ea0c07d37f724099bf2d613fe8f29138e0a43257 /archaeological_operations/models.py | |
parent | e999c506ac3b74ad161afc5938f6bf8bd8a5256f (diff) | |
download | Ishtar-1713ea6f95111cd657f9dd519807dd3c9204323c.tar.bz2 Ishtar-1713ea6f95111cd657f9dd519807dd3c9204323c.zip |
Serializations: ActType filter in types - Full export of ActType in conf
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 6a25490d7..a120e7db5 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -1735,6 +1735,7 @@ class ActType(GeneralType): ('TF', _(u'Treatment request')), ('T', _(u'Treatment')), ) + SERIALIZATION_EXCLUDE = ["associated_template"] intented_to = models.CharField(_("Intended to"), max_length=2, choices=TYPE) code = models.CharField(_("Code"), max_length=10, blank=True, null=True) |