summaryrefslogtreecommitdiff
path: root/ishtar_common/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-09-05 18:32:18 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-10-24 12:06:08 +0200
commit91bf33a99f49ac8e44ceb03f39548b7e3f69eee9 (patch)
treeb0efd83a6c1ec752f5ff29d5b258e31b33e7454d /ishtar_common/forms.py
parent93486b4c08af232d95fde4cff372ddaf8c290925 (diff)
downloadIshtar-91bf33a99f49ac8e44ceb03f39548b7e3f69eee9.tar.bz2
Ishtar-91bf33a99f49ac8e44ceb03f39548b7e3f69eee9.zip
QA edit find: better management of fields
Diffstat (limited to 'ishtar_common/forms.py')
-rw-r--r--ishtar_common/forms.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py
index 4300e9c36..106b68c14 100644
--- a/ishtar_common/forms.py
+++ b/ishtar_common/forms.py
@@ -642,11 +642,15 @@ class ManageOldType(IshtarForm):
class QAForm(CustomForm, ManageOldType):
MULTI = False
+ SINGLE_FIELDS = []
def __init__(self, *args, **kwargs):
self.items = kwargs.pop('items')
super(QAForm, self).__init__(*args, **kwargs)
- for k in self.fields:
+ for k in self.fields.keys():
+ if self.MULTI and k in self.SINGLE_FIELDS:
+ self.fields.pop(k)
+ continue
if self.MULTI and k not in self.REPLACE_FIELDS:
self.fields[k].label = unicode(self.fields[k].label) + \
unicode(u" - append to existing")