diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-08 11:18:20 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-24 12:06:09 +0200 |
commit | f9debe827556003e37493290b1e29fb5b9741e88 (patch) | |
tree | 42def1e68d0252237904317a2554418a9592c6c8 /ishtar_common/models.py | |
parent | f2f6b7c1c491a1a740d33cda3b0613f9d631c137 (diff) | |
download | Ishtar-f9debe827556003e37493290b1e29fb5b9741e88.tar.bz2 Ishtar-f9debe827556003e37493290b1e29fb5b9741e88.zip |
Optionnal use of indexes for cached label for finds
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 0a00fc108..3e7cecf2a 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1987,6 +1987,8 @@ class IshtarSiteProfile(models.Model, Cached): u"Change this with care. With incorrect formula, the " u"application might be unusable and import of external " u"data can be destructive.")) + find_use_index = models.BooleanField(_(u"Use auto index for finds"), + default=True) currency = models.CharField(_(u"Currency"), default=u"€", choices=CURRENCY, max_length=5) |