mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 23:43:11 +01:00
Update settings documentation for Ticket PRIORITY_CHOICES customization
This commit is contained in:
parent
3e791d98fa
commit
7501e7fcd7
@ -176,6 +176,21 @@ Options that change ticket updates
|
||||
**Default:** ``HELPDESK_STAFF_ONLY_TICKET_CC = False``
|
||||
|
||||
|
||||
Options that change ticket properties
|
||||
-------------------------------------
|
||||
|
||||
- **HELPDESK_TICKET_PRIORITY_CHOICES** Customize the priority choices for all tickets.
|
||||
|
||||
The **default** is below::
|
||||
|
||||
HELPDESK_TICKET_PRIORITY_CHOICES = (
|
||||
(1, _('1. Critical')),
|
||||
(2, _('2. High')),
|
||||
(3, _('3. Normal')),
|
||||
(4, _('4. Low')),
|
||||
(5, _('5. Very Low')),
|
||||
)
|
||||
|
||||
Staff Ticket Creation Settings
|
||||
------------------------------
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user