From c9628e32347e134df683dd259b1642076ad58d73 Mon Sep 17 00:00:00 2001 From: Sam Splunks <72095718+samsplunks@users.noreply.github.com> Date: Thu, 1 Feb 2024 16:23:18 +0100 Subject: [PATCH] Documentation text editing --- docs/settings.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/settings.rst b/docs/settings.rst index 9d868f8d..802b55f1 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -179,23 +179,23 @@ Options that change ticket updates Options that change ticket properties ------------------------------------- -- **HELPDESK_TICKET_OPEN_STATUS** Customize the id of OPEN_STATUS tickets status. +- **HELPDESK_TICKET_OPEN_STATUS** Customize the id of OPEN_STATUS status. **Default:** ``HELPDESK_TICKET_OPEN_STATUS = 1`` -- **HELPDESK_TICKET_REOPENED_STATUS** Customize the id of REOPENED_STATUS tickets status. +- **HELPDESK_TICKET_REOPENED_STATUS** Customize the id of REOPENED_STATUS status. **Default:** ``HELPDESK_TICKET_REOPENED_STATUS = 2`` -- **HELPDESK_TICKET_RESOLVED_STATUS** Customize the id of RESOLVED_STATUS tickets status +- **HELPDESK_TICKET_RESOLVED_STATUS** Customize the id of RESOLVED_STATUS status. **Default:** ``HELPDESK_TICKET_RESOLVED_STATUS = 3`` -- **HELPDESK_TICKET_CLOSED_STATUS** Customize the id of CLOSED_STATUS tickets status +- **HELPDESK_TICKET_CLOSED_STATUS** Customize the id of CLOSED_STATUS status. **Default:** ``HELPDESK_TICKET_CLOSED_STATUS = 4`` -- **HELPDESK_TICKET_DUPLICATE_STATUS** Customize the id of DUPLICATE_STATUS tickets status +- **HELPDESK_TICKET_DUPLICATE_STATUS** Customize the id of DUPLICATE_STATUS status. **Default:** ``HELPDESK_TICKET_DUPLICATE_STATUS = 5`` @@ -211,7 +211,7 @@ Options that change ticket properties (DUPLICATE_STATUS, _('Duplicate')), ) - If you wish to introduce a new status choice for all tickets, you may add them like this:: + If you wish to introduce new status choices, you may add them like this:: HELPDESK_TICKET_STATUS_CHOICES = ( (OPEN_STATUS, _('Open')), @@ -219,14 +219,14 @@ Options that change ticket properties (RESOLVED_STATUS, _('Resolved')), (CLOSED_STATUS, _('Closed')), (DUPLICATE_STATUS, _('Duplicate')), - (6, _('Opened by bot')), + (6, _('Forked')), ) - **HELPDESK_TICKET_OPEN_STATUSES** Define the list of statuses to be considered as a type of open status. **Default:** ``HELPDESK_TICKET_OPEN_STATUSES = (OPEN_STATUS, REOPENED_STATUS)`` - If you have added the ``(6, _('Opened by bot'))`` status and wish to have django-helpdesk treat it as an open status choice, add it to the list of OPEN_STATUSES like this:: + If you have added the ``(6, _('Forked'))`` status and wish to have django-helpdesk treat it as an open status choice, add it to the list of OPEN_STATUSES like this:: HELPDESK_TICKET_OPEN_STATUSES = (OPEN_STATUS, REOPENED_STATUS, 6)