mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-09 00:04:50 +02:00
Customization of Ticket PRIORITY_CHOICES in project settings
This commit is contained in:
@ -477,13 +477,7 @@ class Ticket(models.Model):
|
||||
(DUPLICATE_STATUS, _('Duplicate')),
|
||||
)
|
||||
|
||||
PRIORITY_CHOICES = (
|
||||
(1, _('1. Critical')),
|
||||
(2, _('2. High')),
|
||||
(3, _('3. Normal')),
|
||||
(4, _('4. Low')),
|
||||
(5, _('5. Very Low')),
|
||||
)
|
||||
PRIORITY_CHOICES = helpdesk_settings.PRIORITY_CHOICES
|
||||
|
||||
title = models.CharField(
|
||||
_('Title'),
|
||||
|
Reference in New Issue
Block a user