mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-12 12:46:53 +02:00
Handle "no label" for status id case (shouldn't happen)
This commit is contained in:
parent
c7a9a1ab54
commit
40ef247844
@ -719,7 +719,7 @@ class Ticket(models.Model):
|
||||
if status_id_list:
|
||||
# keep defined statuses in order and add labels for display
|
||||
status_dict = dict(helpdesk_settings.TICKET_STATUS_CHOICES)
|
||||
new_statuses = [(status_id, status_dict.get(status_id, 1))
|
||||
new_statuses = [(status_id, status_dict.get(status_id, _('No label')))
|
||||
for status_id in status_id_list]
|
||||
else:
|
||||
# defaults to all choices if status was not mapped
|
||||
|
Loading…
x
Reference in New Issue
Block a user