2011-02-05 05:29:50 +01:00
Settings
========
2011-02-05 00:13:37 +01:00
2011-11-09 18:29:57 +01:00
First, django-helpdesk needs `` django.core.context_processors.request `` activated, so in your `` settings.py `` add::
from django.conf import global_settings
TEMPLATE_CONTEXT_PROCESSORS = (
global_settings.TEMPLATE_CONTEXT_PROCESSORS +
('django.core.context_processors.request',)
)
2012-08-08 07:21:29 +02:00
The following settings can be changed in your `` settings.py `` file to help change the way django-helpdesk operates. There are quite a few settings available to toggle functionality within django-helpdesk.
2011-02-05 00:13:37 +01:00
HELPDESK_DEFAULT_SETTINGS
2012-08-08 09:36:34 +02:00
-------------------------
2011-02-05 00:13:37 +01:00
2011-04-27 11:57:03 +02:00
django-helpdesk has a built in `` UserSettings `` entity with per-user options that they will want to configure themselves. When you create a new user, a set of options is automatically created for them which they can then change themselves.
2011-02-05 00:13:37 +01:00
If you want to override the default settings for your users, create `` HELPDESK_DEFAULT_SETTINGS `` as a dictionary in `` settings.py `` . The default is below::
HELPDESK_DEFAULT_SETTINGS = {
'use_email_as_submitter': True,
'email_on_ticket_assign': True,
'email_on_ticket_change': True,
'login_view_ticketlist': True,
'email_on_ticket_apichange': True,
'tickets_per_page': 25
}
2012-08-08 07:21:29 +02:00
Generic Options
2012-08-08 09:36:34 +02:00
---------------
2012-08-08 07:21:29 +02:00
These changes are visible throughout django-helpdesk
2012-08-08 09:36:34 +02:00
- **HELPDESK_REDIRECT_TO_LOGIN_BY_DEFAULT** When a user visits "/", should we redirect to the login page instead of the default homepage?
**Default:** `` HELPDESK_REDIRECT_TO_LOGIN_BY_DEFAULT = False ``
- **HELPDESK_KB_ENABLED** show knowledgebase links?
**Default:** `` HELPDESK_KB_ENABLED = True ``
- **HELPDESK_NAVIGATION_ENABLED** Show extended navigation by default, to all users, irrespective of staff status?
**Default:** `` HELPDESK_NAVIGATION_ENABLED = False ``
- **HELPDESK_TRANSLATE_TICKET_COMMENTS** Show dropdown list of languages that ticket comments can be translated into via Google Translate?
**Default:** `` HELPDESK_TRANSLATE_TICKET_COMMENTS = False ``
- **HELPDESK_TRANSLATE_TICKET_COMMENTS_LANG** List of languages to offer. If set to false, all default google translate languages will be shown.
**Default:** `` HELPDESK_TRANSLATE_TICKET_COMMENTS_LANG = ["en", "de", "fr", "it", "ru"] ``
- **HELPDESK_SHOW_CHANGE_PASSWORD** Show link to 'change password' on 'User Settings' page?
**Default:** `` HELPDESK_SHOW_CHANGE_PASSWORD = False ``
- **HELPDESK_FOLLOWUP_MOD** Allow user to override default layout for 'followups' (work in progress)
**Default:** `` HELPDESK_FOLLOWUP_MOD = False ``
2014-07-20 10:43:50 +02:00
- **HELPDESK_AUTO_SUBSCRIBE_ON_TICKET_RESPONSE** Auto-subscribe user to ticket as a 'CC' if (s)he responds to a ticket?
2012-08-08 09:36:34 +02:00
**Default:** `` HELPDESK_AUTO_SUBSCRIBE_ON_TICKET_RESPONSE = False ``
2012-08-08 07:21:29 +02:00
2014-07-20 10:43:50 +02:00
- **HELPDESK_EMAIL_SUBJECT_TEMPLATE** Subject template for templated emails. `` %(subject)s `` represents the subject wording from the email template (e.g. "(Closed)").
2014-07-16 00:48:42 +02:00
**Default:** `` HELPDESK_EMAIL_SUBJECT_TEMPLATE = "{{ ticket.ticket }} {{ ticket.title|safe }} %(subject)s" ``
2012-08-08 07:21:29 +02:00
Options shown on public pages
2012-08-08 09:36:34 +02:00
-----------------------------
2012-08-08 07:21:29 +02:00
These options only change display of items on public-facing pages, not staff pages.
2012-08-08 09:36:34 +02:00
- **HELPDESK_VIEW_A_TICKET_PUBLIC** Show 'View a Ticket' section on public page?
**Default:** `` HELPDESK_VIEW_A_TICKET_PUBLIC = True ``
2012-08-08 07:21:29 +02:00
2012-08-08 09:36:34 +02:00
- **HELPDESK_SUBMIT_A_TICKET_PUBLIC** Show 'submit a ticket' section & form on public page?
**Default:** `` HELPDESK_SUBMIT_A_TICKET_PUBLIC = True ``
2012-08-08 07:21:29 +02:00
Options that change ticket updates
2012-08-08 09:36:34 +02:00
----------------------------------
- **HELPDESK_ALLOW_NON_STAFF_TICKET_UPDATE** Allow non-staff users to interact with tickets? This will also change how 'staff_member_required'
in staff.py will be defined.
**Default:** `` HELPDESK_ALLOW_NON_STAFF_TICKET_UPDATE = False ``
- **HELPDESK_SHOW_EDIT_BUTTON_FOLLOW_UP** Show edit buttons in ticket follow ups?
**Default:** `` HELPDESK_SHOW_EDIT_BUTTON_FOLLOW_UP = True ``
- **HELPDESK_SHOW_DELETE_BUTTON_SUPERUSER_FOLLOW_UP** Show delete buttons in ticket follow ups if user is 'superuser'?
**Default:** `` HELPDESK_SHOW_DELETE_BUTTON_SUPERUSER_FOLLOW_UP = False ``
- **HELPDESK_UPDATE_PUBLIC_DEFAULT** Make all updates public by default? This will hide the 'is this update public' checkbox.
2014-07-19 15:54:33 +02:00
**Default:** `` HELPDESK_UPDATE_PUBLIC_DEFAULT = False ``
2012-08-08 09:36:34 +02:00
- **HELPDESK_STAFF_ONLY_TICKET_OWNERS** Only show staff users in ticket owner drop-downs?
**Default:** `` HELPDESK_STAFF_ONLY_TICKET_OWNERS = False ``
- **HELPDESK_STAFF_ONLY_TICKET_CC** Only show staff users in ticket cc drop-down?
**Default:** `` HELPDESK_STAFF_ONLY_TICKET_CC = False ``
2012-08-08 07:21:29 +02:00
Staff Ticket Creation Settings
2012-08-08 09:36:34 +02:00
------------------------------
- **HELPDESK_CREATE_TICKET_HIDE_ASSIGNED_TO** Hide the 'assigned to' / 'Case owner' field from the 'create_ticket' view? It'll still show on the ticket detail/edit form.
2012-08-08 07:21:29 +02:00
2012-08-08 09:36:34 +02:00
**Default:** `` HELPDESK_CREATE_TICKET_HIDE_ASSIGNED_TO = False ``
2012-08-08 07:21:29 +02:00
Dashboard Settings
2012-08-08 09:36:34 +02:00
------------------
2012-08-08 07:21:29 +02:00
These will change the way the *dashboard* is displayed to staff users when they login.
2012-08-08 09:36:34 +02:00
- **HELPDESK_DASHBOARD_SHOW_DELETE_UNASSIGNED** Show delete button next to unassigned tickets?
2012-08-08 07:21:29 +02:00
2012-08-08 09:36:34 +02:00
**Default:** `` HELPDESK_DASHBOARD_SHOW_DELETE_UNASSIGNED = True ``
2012-08-08 07:21:29 +02:00
2012-08-08 09:36:34 +02:00
- **HELPDESK_DASHBOARD_HIDE_EMPTY_QUEUES** Hide empty queues in dashboard overview?
**Default:** `` HELPDESK_DASHBOARD_HIDE_EMPTY_QUEUES = True ``
- **HELPDESK_DASHBOARD_BASIC_TICKET_STATS** Show basic ticket stats on dashboard? This may have performance implications for busy helpdesks.
**Default:** `` HELPDESK_DASHBOARD_BASIC_TICKET_STATS = False ``
2012-08-08 07:21:29 +02:00
Footer Display Settings
2012-08-08 09:36:34 +02:00
-----------------------
- **HELPDESK_FOOTER_SHOW_API_LINK** Show link to API documentation at bottom of page?
**Default:** `` HELPDESK_FOOTER_SHOW_API_LINK = True ``
2012-08-08 07:21:29 +02:00
2012-08-08 09:36:34 +02:00
- **HELPDESK_FOOTER_SHOW_CHANGE_LANGUAGE_LINK** Show the 'change language' link at bottom of page? Useful if you have a multilingual helpdesk.
2012-08-08 07:21:29 +02:00
2012-08-08 09:36:34 +02:00
**Default:** `` HELPDESK_FOOTER_SHOW_CHANGE_LANGUAGE_LINK = False ``
2012-08-08 07:21:29 +02:00
Default E-Mail Settings
2012-08-08 09:36:34 +02:00
-----------------------
2012-08-08 07:21:29 +02:00
The following settings default to `` None `` but can be set as defaults, rather than setting them per-queue.
2012-08-08 09:36:34 +02:00
- `` QUEUE_EMAIL_BOX_TYPE ``
- `` QUEUE_EMAIL_BOX_SSL ``
- `` QUEUE_EMAIL_BOX_HOST ` ` ``
- `` QUEUE_EMAIL_BOX_USER ``
- `` QUEUE_EMAIL_BOX_PASSWORD ``
2014-07-19 15:54:33 +02:00
Discontinued Settings
---------------------
The following settings were defined in previous versions and are no longer supported.
- **HELPDESK_CUSTOM_WELCOME**
2014-07-20 07:33:11 +02:00
- **HELDPESK_KB_ENABLED_STAFF** Now always True
- **HELPDESK_NAVIGATION_STATS_ENABLED** Now always True
2014-07-19 15:54:33 +02:00
- **HELPDESK_PREPEND_ORG_NAME** Please customise your local `helpdesk/base.html` template if needed
2014-07-20 07:33:11 +02:00
- **HELPDESK_SHOW_DELETE_BUTTON_TICKET_TOP** Button is always shown
2014-07-19 15:54:33 +02:00
2014-07-20 07:33:11 +02:00
- **HELPDESK_SHOW_EDIT_BUTTON_TICKET_TOP** Button is always shown
2014-07-19 15:54:33 +02:00
2014-07-20 07:33:11 +02:00
- **HELPDESK_SHOW_HOLD_BUTTON_TICKET_TOP** Button is always shown
2014-07-19 15:54:33 +02:00
2014-07-20 07:33:11 +02:00
- **HELPDESK_SHOW_KB_ON_HOMEPAGE** KB categories are always shown on the homepage
- **HELPDESK_SUPPORT_PERSON** Please customise your local `helpdesk/attribution.html` template if needed