diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-11-02 18:19:03 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 |
commit | 14a0da5cb7a794008227cc5c35beadc5f8060b93 (patch) | |
tree | 37336a463b9a68d957fa30ce721ca9452826b7b7 /ishtar_common/models.py | |
parent | c153a9d9891c724e711a57cbc49ac0723b37ac8a (diff) | |
download | Ishtar-14a0da5cb7a794008227cc5c35beadc5f8060b93.tar.bz2 Ishtar-14a0da5cb7a794008227cc5c35beadc5f8060b93.zip |
JSON types: multi valued choices
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 6da129adb..9c508c9fc 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -683,6 +683,7 @@ JSON_VALUE_TYPES = ( ("F", _("Float")), ("D", _("Date")), ("C", _("Choices")), + ("MC", _("Multi-choices")), ) |