mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-12 18:00:45 +01:00
fix typo
This commit is contained in:
parent
cdddc79998
commit
07d6ee7f87
@ -183,7 +183,7 @@ class AbstractTicketForm(CustomFieldMixin, forms.Form):
|
|||||||
self.fields['kbitem'] = forms.ChoiceField(
|
self.fields['kbitem'] = forms.ChoiceField(
|
||||||
widget=forms.Select(attrs={'class': 'form-control'}),
|
widget=forms.Select(attrs={'class': 'form-control'}),
|
||||||
required=False,
|
required=False,
|
||||||
label=_('Knowedge Base Item'),
|
label=_('Knowledge Base Item'),
|
||||||
choices=[(kbi.pk, kbi.title) for kbi in KBItem.objects.filter(category=kbcategory.pk)],
|
choices=[(kbi.pk, kbi.title) for kbi in KBItem.objects.filter(category=kbcategory.pk)],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user