diff options
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/forms.py | 6 | ||||
-rw-r--r-- | ishtar_common/templates/widgets/search_input.html | 2 |
2 files changed, 6 insertions, 2 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") diff --git a/ishtar_common/templates/widgets/search_input.html b/ishtar_common/templates/widgets/search_input.html index 0cdf74cc5..e63d067a9 100644 --- a/ishtar_common/templates/widgets/search_input.html +++ b/ishtar_common/templates/widgets/search_input.html @@ -2,7 +2,7 @@ <input type="{{ widget.type }}" name="{{ widget.name }}" {% if widget.value != None %} value="{{ widget.value|stringformat:'s' }}"{% endif %}{% include "django/forms/widgets/attrs.html" %} /> <span class="input-group-append"> - <span class="input-group-text input-link" + <span class="input-group-text input-link bg-primary text-white" title="{% trans 'Search' %}" id="submit-search"> <i class="fa fa-search" aria-hidden="true"></i> |