mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-07-01 06:40:33 +02:00
* Issue #24: Add ability to localise queues so that the templates used
by those queues are in languages that differ from the installation langugage. To utilise this, call your templates 'zz:templatename' where 'zz' is the language code and 'templatename' is the name used by the Helpdesk when sending e-mails. Thanks to Paul Boehm for the submission.
This commit is contained in:
@ -45,6 +45,14 @@ class Queue(models.Model):
|
||||
'address for that mailbox.'),
|
||||
)
|
||||
|
||||
locale = models.CharField(
|
||||
_('Locale'),
|
||||
max_length=10,
|
||||
blank=True,
|
||||
null=True,
|
||||
help_text=_('Locale of this queue. All correspondence in this queue will be in this language.'),
|
||||
)
|
||||
|
||||
allow_public_submission = models.BooleanField(
|
||||
_('Allow Public Submission?'),
|
||||
blank=True,
|
||||
|
Reference in New Issue
Block a user